:root {
    --color-primary: #2c5530;
    --color-primary-dark: #1e3a21;
    --color-primary-light: #4a7c50;
    --color-secondary: #d4a574;
    --color-secondary-dark: #b8905a;
    --color-accent: #8b6f47;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-bg: #faf9f6;
    --color-white: #ffffff;
    --color-border: #e5e5e5;
    --gradient-primary: linear-gradient(135deg, #2c5530 0%, #4a7c50 100%);
    --gradient-secondary: linear-gradient(135deg, #d4a574 0%, #b8905a 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a21 0%, #2c5530 50%, #4a7c50 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--color-white);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 9998;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.cookie-text p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-reject {
    background: var(--color-border);
    color: var(--color-text);
}

.btn-reject:hover {
    background: #d0d0d0;
}

.btn-settings {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-settings:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.main-header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary-dark);
    font-family: 'Playfair Display', serif;
}

.brand-icon {
    display: none;
}

.brand-text {
    color: var(--color-primary-dark);
}

.brand-accent {
    color: var(--color-secondary);
}

.navbar-nav .nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 85, 48, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(44, 85, 48, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.1); }
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-secondary);
    color: var(--color-white);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-primary-dark);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 40px;
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100%;
    justify-content: center;
}

.signal-bars .bar {
    width: 12px;
    background: var(--color-white);
    border-radius: 2px;
    animation: signalPulse 2s ease-in-out infinite;
}

.bar-1 {
    height: 20%;
    animation-delay: 0s;
}

.bar-2 {
    height: 40%;
    animation-delay: 0.2s;
}

.bar-3 {
    height: 60%;
    animation-delay: 0.4s;
}

.bar-4 {
    height: 80%;
    animation-delay: 0.6s;
}

@keyframes signalPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-primary-dark);
}

.intro-section {
    background: var(--color-white);
}

.intro-article {
    padding: 40px;
    background: var(--color-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--color-text-light);
    flex-wrap: wrap;
}

.article-date::before {
    content: '';
}

.article-author::before {
    content: '';
}

.intro-article p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text);
}

.operators-section {
    background: var(--color-bg);
}

.operator-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.operator-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.operator-card.featured {
    border: 3px solid var(--color-secondary);
    position: relative;
}

.operator-card.featured::before {
    content: '⭐ Recommended';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.operator-header {
    padding: 30px 30px 20px;
    background: var(--gradient-primary);
    position: relative;
}

.operator-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.movistar-logo {
    color: #00a9e0;
}

.orange-logo {
    color: #ff6600;
}

.vodafone-logo {
    color: #e60000;
}

.operator-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.operator-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.operator-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-primary-dark);
}

.operator-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.operator-features {
    list-style: none;
    margin-bottom: 24px;
}

.operator-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--color-text);
}

.operator-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

.btn-operator {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    margin-top: auto;
}

.btn-operator:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

.considerations-section {
    background: var(--color-white);
}

.considerations-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.consideration-item {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: var(--color-bg);
    border-radius: 16px;
    transition: var(--transition);
}

.consideration-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.consideration-icon {
    font-size: 48px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: 12px;
}

.consideration-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.consideration-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.main-footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: var(--color-secondary);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-top: 20px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom a {
    color: var(--color-secondary);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .hero-content {
        padding: 40px 0;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .consideration-item {
        flex-direction: column;
        text-align: center;
    }

    .consideration-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
        min-width: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 16px;
    }

    .intro-article {
        padding: 24px;
    }

    .operator-card.featured::before {
        top: 10px;
        right: 10px;
        font-size: 11px;
        padding: 4px 10px;
    }
}

:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

.article-header-section {
    background: var(--gradient-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.article-header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item.active {
    color: var(--color-white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-lead {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
}

.article-content-section {
    background: var(--color-bg);
}

.article-content-section article {
    background: var(--color-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.article-content-section h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-secondary);
}

.article-content-section h2:first-of-type {
    margin-top: 0;
}

.article-content-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text);
}

.article-content-section ul,
.article-content-section ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.article-content-section li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--color-text);
}

.article-content-section a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content-section a:hover {
    color: var(--color-primary-dark);
}

.article-footer {
    border-top: 2px solid var(--color-border);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--color-primary-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-secondary);
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
    line-height: 1.6;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list strong {
    color: var(--color-primary-dark);
    display: inline-block;
    min-width: 140px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: var(--color-primary);
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
}

.sidebar-links a:hover {
    color: var(--color-primary-dark);
    padding-left: 8px;
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-hero {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
    outline: none;
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-submit {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-primary-dark);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--color-primary-dark);
}

.contact-info-content p {
    font-size: 15px;
    color: var(--color-text-light);
    margin: 0;
}

.contact-info-content a {
    color: var(--color-primary);
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.about-hero {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.about-content-wrapper {
    background: var(--color-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-image-placeholder {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--color-white);
}

.about-content-wrapper h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
}

.about-content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-timeline {
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: -30px;
    width: 3px;
    background: var(--gradient-primary);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 80px;
    font-family: 'Playfair Display', serif;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

@media print {
    .page-loader,
    .cookie-banner,
    .main-header,
    .main-footer {
        display: none;
    }
}

@media (max-width: 992px) {
    .article-content-section article {
        padding: 30px;
    }

    .article-sidebar {
        position: static;
        margin-top: 40px;
    }

    .contact-form-wrapper,
    .about-content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 18px;
    }

    .article-content-section article {
        padding: 24px;
    }

    .article-content-section h2 {
        font-size: 26px;
    }

    .contact-hero,
    .about-hero {
        padding: 60px 0;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 0;
    }

    .timeline-item::before {
        display: none;
    }
}

