:root {
    --paper: #FAF7F2;
    --paper-dark: #F5F1E8;
    --ink: #1A1816;
    --ink-light: #3D3935;
    --ink-lighter: #6B6561;
    --accent: #8B6F47;
    --accent-light: #A68B66;
    --accent-dark: #6B5635;
    --border: #E8E3DA;
    
    --shadow-sm: 0 1px 2px rgba(26, 24, 22, 0.06), 0 1px 3px rgba(26, 24, 22, 0.08);
    --shadow-md: 0 2px 4px rgba(26, 24, 22, 0.06), 0 4px 8px rgba(26, 24, 22, 0.08), 0 8px 16px rgba(26, 24, 22, 0.04);
    --shadow-lg: 0 4px 8px rgba(26, 24, 22, 0.06), 0 8px 16px rgba(26, 24, 22, 0.08), 0 16px 32px rgba(26, 24, 22, 0.06);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw, 1rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(1.5rem, 3vw, 2.5rem);
    --space-xl: clamp(2rem, 4vw, 4rem);
    --space-2xl: clamp(3rem, 6vw, 6rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(26, 24, 22, 0.015) 2px, rgba(26, 24, 22, 0.015) 4px);
    pointer-events: none;
    z-index: 1;
}

main {
    position: relative;
    z-index: 2;
}

#cookieReject, #cookieCustomize {
  color: var(--paper);
}

#cookieReject:hover, #cookieCustomize:hover {
  color: var(--accent);
}

.nav-tabs {
    background: var(--paper);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 36px;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.7;
}

.nav-tabs-wrapper {
    display: flex;
    gap: var(--space-xs);
}

.nav-tab {
    padding: var(--space-sm) var(--space-md);
    color: var(--ink-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tab:hover {
    color: var(--ink);
    background: var(--paper-dark);
}

.nav-tab.active {
    color: var(--ink);
    background: var(--paper-dark);
    border-bottom: 3px solid var(--accent);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s ease;
}

.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-2xl) var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.accent-text {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: var(--accent-light);
    opacity: 0.3;
}

.hero-description {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    color: var(--ink-light);
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn {
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--paper);
    box-shadow: 0 2px 4px rgba(139, 111, 71, 0.2), 0 4px 8px rgba(139, 111, 71, 0.15);
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 4px 8px rgba(139, 111, 71, 0.25), 0 8px 16px rgba(139, 111, 71, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink-lighter);
}

.btn-secondary:hover {
    background: var(--paper-dark);
    border-color: var(--accent);
    color: var(--accent-dark);
}

.hero-image {
    position: relative;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-2xl) 0;
}

.intro-section {
    background: var(--paper-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.intro-text p {
    margin-bottom: var(--space-md);
    color: var(--ink-light);
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.competencies-section {
    background: var(--paper);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.section-header p {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: var(--ink-light);
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.competency-card {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.competency-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent-light);
}

.competency-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--paper);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.competency-card:hover .competency-icon {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.competency-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.competency-card p {
    color: var(--ink-light);
    line-height: 1.6;
}

.formats-section {
    background: var(--paper-dark);
}

.formats-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.formats-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.formats-text > p {
    margin-bottom: var(--space-lg);
    color: var(--ink-light);
}

.format-comparison {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.format-item {
    background: var(--paper);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.format-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.format-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--accent-dark);
}

.format-item p {
    color: var(--ink-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.formats-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.certifications-section {
    background: var(--paper);
}

.certifications-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-intro {
    text-align: center;
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: var(--ink-light);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.cert-category {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.cert-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cert-category > p {
    color: var(--ink-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.cert-category img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.literacy-section {
    background: var(--paper-dark);
}

.literacy-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: center;
}

.literacy-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.literacy-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.literacy-content > p {
    margin-bottom: var(--space-lg);
    color: var(--ink-light);
}

.literacy-topics {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.literacy-topic {
    background: var(--paper);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.literacy-topic h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--accent-dark);
}

.literacy-topic p {
    color: var(--ink-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.trends-section {
    background: var(--paper);
}

.trends-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.trend-card {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trend-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.trend-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--accent-dark);
}

.trend-card p {
    color: var(--ink-light);
    line-height: 1.6;
}

.approach-preview {
    background: var(--paper-dark);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.approach-content p {
    color: var(--ink-light);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    line-height: 1.7;
}

.approach-content .btn {
    margin-top: var(--space-md);
}

.approach-image {
    margin-top: var(--space-xl);
}

.approach-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
}

.cta-section {
    background: var(--accent);
    color: var(--paper);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--paper);
}

.cta-content p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    margin-bottom: var(--space-lg);
    color: var(--paper);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--paper);
    color: var(--accent-dark);
}

.cta-section .btn-primary:hover {
    background: var(--paper-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--paper);
    border-color: var(--paper);
}

.cta-section .btn-secondary:hover {
    background: rgba(250, 247, 242, 0.15);
    border-color: var(--paper);
}

.footer {
    background: var(--ink);
    color: var(--paper);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--paper);
}

.footer-logo {
    height: 36px;
    margin-bottom: var(--space-md);
}

.footer-column p {
    color: rgba(250, 247, 242, 0.8);
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: rgba(250, 247, 242, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-light);
}

.footer-column ul li i {
    margin-right: var(--space-xs);
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.15);
    padding-top: var(--space-md);
    text-align: center;
    color: rgba(250, 247, 242, 0.6);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--paper);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
}

.page-hero {
    background: var(--paper-dark);
    padding: var(--space-2xl) 0 var(--space-xl);
    text-align: center;
    border-bottom: 2px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.page-hero p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--ink-light);
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: var(--space-2xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.content-main h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    margin-bottom: var(--space-md);
    color: var(--ink-light);
    line-height: 1.7;
}

.content-main ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-main ul li {
    margin-bottom: var(--space-sm);
    color: var(--ink-light);
    line-height: 1.6;
}

.approach-image-block {
    margin: var(--space-xl) 0;
}

.approach-image-block img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: var(--space-md);
}

.sidebar-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card ul li {
    padding: var(--space-xs) 0;
    color: var(--ink-light);
    position: relative;
    padding-left: var(--space-md);
}

.sidebar-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.principles-section {
    background: var(--paper-dark);
}

.principles-section h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.principle-card {
    background: var(--paper);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto var(--space-md);
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.principle-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.principle-card p {
    color: var(--ink-light);
    line-height: 1.6;
}

.resources-intro {
    background: var(--paper-dark);
    padding: var(--space-lg) 0;
    border-bottom: 2px solid var(--border);
}

.intro-text {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: var(--ink-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.resources-section {
    padding: var(--space-2xl) 0;
}

.resource-category {
    margin-bottom: var(--space-2xl);
}

.resource-category:last-child {
    margin-bottom: 0;
}

.resource-category h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.resource-card {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.resource-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--accent-dark);
}

.resource-card > p {
    color: var(--ink-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.resource-card ul {
    list-style: none;
    padding-left: 0;
}

.resource-card ul li {
    padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
    color: var(--ink-light);
    position: relative;
    line-height: 1.5;
}

.resource-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.format-comparison-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.format-detail {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.format-detail h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--accent-dark);
}

.format-detail > p {
    color: var(--ink-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.format-characteristics h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.format-characteristics ul {
    list-style: none;
    padding-left: 0;
}

.format-characteristics ul li {
    padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
    color: var(--ink-light);
    position: relative;
    line-height: 1.5;
}

.format-characteristics ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.cert-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.cert-info-card {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.cert-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--accent-dark);
}

.cert-info-card > p {
    color: var(--ink-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.cert-info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.cert-info-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-md);
}

.cert-info-card ul li {
    padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
    color: var(--ink-light);
    position: relative;
    line-height: 1.5;
}

.cert-info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.literacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.literacy-content > p {
    font-size: 1.1rem;
    color: var(--ink-light);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.literacy-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.literacy-area {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.literacy-area h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--accent-dark);
}

.literacy-area p {
    color: var(--ink-light);
    line-height: 1.6;
}

.trends-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.trend-detail {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.trend-detail h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--accent-dark);
}

.trend-detail p {
    color: var(--ink-light);
    line-height: 1.6;
}

.paths-intro {
    background: var(--paper-dark);
    padding: var(--space-lg) 0;
    border-bottom: 2px solid var(--border);
}

.learning-paths-section {
    padding: var(--space-2xl) 0;
}

.path-category {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 2px solid var(--border);
}

.path-category:last-child {
    border-bottom: none;
}

.path-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.path-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--paper);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.path-title h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.path-title p {
    color: var(--ink-light);
    font-size: 1.1rem;
}

.path-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.path-stage {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.path-stage h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--accent-dark);
}

.path-stage ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-md);
}

.path-stage ul li {
    padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
    color: var(--ink-light);
    position: relative;
    line-height: 1.5;
}

.path-stage ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.stage-note {
    font-size: 0.9rem;
    color: var(--ink-lighter);
    font-style: italic;
    line-height: 1.5;
    padding: var(--space-sm);
    background: var(--paper);
    border-radius: var(--radius-sm);
}

.path-image {
    margin-top: var(--space-lg);
}

.path-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.certification-sequences {
    background: var(--paper-dark);
    padding: var(--space-2xl) 0;
}

.certification-sequences h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.cert-sequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.cert-sequence {
    background: var(--paper);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.cert-sequence h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--accent-dark);
}

.cert-progression {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cert-level {
    background: var(--paper-dark);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.level-label {
    display: inline-block;
    background: var(--accent);
    color: var(--paper);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.cert-level p {
    color: var(--ink-light);
    line-height: 1.5;
}

.cert-arrow {
    text-align: center;
    color: var(--accent);
    font-size: 1.5rem;
}

.path-considerations {
    padding: var(--space-2xl) 0;
}

.path-considerations h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.considerations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.consideration-card {
    background: var(--paper-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.consideration-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--accent-dark);
}

.consideration-card p {
    color: var(--ink-light);
    line-height: 1.6;
}

.contact-section {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
}

.contact-info h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.contact-info > p {
    color: var(--ink-light);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--paper);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact-text p {
    color: var(--ink-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--paper-dark);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--ink);
}

.form-group input,
.form-group textarea {
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    background: var(--paper);
    color: var(--ink);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-group-checkbox label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    color: var(--ink-light);
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-group-checkbox a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.contact-form button[type="submit"] {
    width: 100%;
}

.map-section {
    padding: 0;
}

.map-section iframe {
    display: block;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-md);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    color: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto var(--space-lg);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thanks-content h1 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--ink-light);
    margin-bottom: var(--space-xl);
}

.thanks-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.legal-section {
    padding: var(--space-2xl) 0;
}

.legal-date {
    text-align: center;
    color: var(--ink-lighter);
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: clamp(1.6rem, 2vw, 1.9rem);
    font-weight: 700;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: clamp(1.3rem, 1.7vw, 1.5rem);
    font-weight: 600;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    color: var(--ink-light);
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-content ul li {
    margin-bottom: var(--space-sm);
    color: var(--ink-light);
    line-height: 1.6;
}

.legal-content strong {
    color: var(--ink);
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    color: var(--paper);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: rgba(250, 247, 242, 0.9);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 24, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: var(--space-md);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--paper);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.cookie-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.cookie-category {
    margin-bottom: var(--space-md);
}

.cookie-category label {
    display: flex;
    align-items: start;
    gap: var(--space-sm);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.cookie-category label:hover {
    background: var(--paper-dark);
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.cookie-modal-buttons button {
    flex: 1;
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero-image {
        order: -1;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .formats-content {
        grid-template-columns: 1fr;
    }
    
    .formats-image img {
        position: static;
    }
    
    .literacy-split {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-tabs-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-tabs-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-tab {
        width: 100%;
        text-align: center;
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .nav-tab.active {
        border-bottom: none;
        background: var(--accent);
        color: var(--paper);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .competencies-grid,
    .trends-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .path-stages {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .thanks-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}