/* ==========================================================================
   eVolucionaIT - TSEDI Style Clone
   ========================================================================== */

:root {
    --primary: #0A0E27;      /* Transpoco Dark Navy */
    --accent: #55E8A8;       /* Transpoco Neon Green */
    --accent-hover: #3dce8e;
    --btn-secondary: #065F55; /* Transpoco Dark Green */
    --bg-light: #f5f6f8;     /* Light gray background */
    --bg-dark-section: #0A0E27;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    --font-heading: 'Roboto', 'Open Sans', sans-serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;
    --transition-base: 0.3s ease;
    --radius-btn: 6px;
    --radius-card: 12px;
    
    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    
    /* Layout */
    --container-max: 1200px;
    --section-spacing: 5rem;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: color var(--transition-base);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.bg-white { background-color: var(--text-light); }
.bg-light-gray { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark-section); }

/* Typography Utilities */
.text-accent { color: var(--accent); }
.text-dark { color: var(--primary); }
.text-white { color: var(--text-light) !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.7); }
.text-muted { color: var(--text-muted); }
.text-green { color: #10B981; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xl { font-size: 1.5rem; font-weight: 800; }
.text-2xl { font-size: 2rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.d-block { display: block; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.ms-2 { margin-left: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.btn:hover i:not(.icon-circle) {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--text-light);
}

/* Icon inside circle (TSEDI Hero button style) */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    margin-left: 10px;
    font-size: 0.7rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    width: 100%;
    height: 80px;
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-base);
    position: absolute;
    top: 0;
}

.navbar.scrolled {
    background: var(--text-light);
    box-shadow: var(--shadow-sm);
    position: fixed;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light); /* White when transparent */
    letter-spacing: -0.5px;
    transition: color var(--transition-base);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-light); /* White when transparent */
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--accent);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link {
    color: var(--primary);
}

.navbar.scrolled .lang-switch {
    color: var(--text-muted);
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border: 1px solid #E2E8F0;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.flag {
    width: 20px;
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 8rem 0 10rem;
    overflow: hidden;
    background-color: var(--text-light);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Transpoco style dark-to-light slate gradient */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #6c7a89 0%, #b3b6b7 50%, #f5f6f8 100%);
    opacity: 0.9;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 8rem; /* Extra padding for the overlap box */
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* ==========================================================================
   Overlap Services Section
   ========================================================================== */
.overlap-section {
    position: relative;
    z-index: 10;
    margin-top: -8rem; /* Pull up to overlap hero */
    padding-bottom: var(--section-spacing);
}

.overlap-box {
    background: var(--text-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    padding: 3rem 2rem;
}

.overlap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.overlap-item {
    padding: 0 2rem;
    text-align: center;
    border-right: 1px solid #E2E8F0;
}

.overlap-item:last-child {
    border-right: none;
}

.overlap-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.overlap-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.overlap-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.overlap-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--btn-secondary);
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 0.7rem;
}

/* ==========================================================================
   Sections & Cards
   ========================================================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.service-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    border: 1px solid #F1F5F9;
    transition: all var(--transition-base);
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Courses & Contact
   ========================================================================== */
.course-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.rounded-img {
    border-radius: 8px;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modern-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-family: var(--font-body);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.8rem auto;
}

.form-select option {
    background: #0A0E27;
    color: var(--text-light);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-card input {
    display: none;
}

.radio-content {
    display: block;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.2);
}

.radio-card input:checked + .radio-content {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    font-weight: 700;
}

.contact-box-dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: background var(--transition-base);
}

.contact-box-dark:hover {
    background: rgba(255,255,255,0.1);
}

/* ==========================================================================
   11. Testimonials Section (Transpoco Style)
   ========================================================================== */
.testimonials-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78,176,183,0.05) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.testimonials-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Esquinas totalmente redondeadas (círculo) */
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
}

.testimonial-author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Services Tabs (Transpoco Style)
   ========================================================================== */
.services-tabs-container {
    margin-top: -60px; /* Overlap effect like the old cards */
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.services-tabs-header {
    background-color: #0A0E27; /* Dark navy */
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-tabs-header .all-industries {
    color: #ffffff;
    font-weight: 700;
    padding: 10px 20px;
    display: none; /* Optional if we want a static title */
}

.services-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.services-tab-btn:hover {
    color: var(--accent);
}

.services-tab-btn.active {
    background-color: var(--accent);
    color: #000;
}

.services-tab-content {
    display: none;
    padding: 4rem 0;
    animation: fadeIn 0.5s ease-in-out;
    transition: opacity 0.3s ease;
}

.services-tab-content.active {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.services-mobile-select {
    display: none;
}

@media (max-width: 991px) {
    .services-tab-content.active {
        flex-direction: column;
        gap: 2rem;
    }
    .services-tabs-header {
        display: none; /* Hide buttons on mobile/tablet */
    }
    .services-mobile-select {
        display: block;
        margin-bottom: 2rem;
    }
    .services-mobile-select select {
        width: 100%;
        padding: 15px 20px;
        background-color: #0A0E27;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        appearance: none;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right 20px top 50%;
        background-size: 15px auto;
        cursor: pointer;
    }
    .services-mobile-select select:focus {
        outline: none;
        box-shadow: 0 0 0 2px var(--accent);
    }
}

.services-tab-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.services-tab-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.services-tab-text {
    flex: 1;
}

.services-tab-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-tab-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-tab-action .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .services-tab-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #0A0F1C;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-white-muted);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-white-muted);
}

.social-links a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container, .course-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .overlap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overlap-item {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 2rem;
    }

    .overlap-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 116px; /* Below ticker and navbar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 116px);
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in-out;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   Privacy Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: flex-end; /* Offcanvas right */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    height: 100%;
    padding: 2rem;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.5, 0, 0, 1);
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateX(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 1rem;
}

.modal-header h3 {
    color: #111111;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666666;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--color-accent);
}

.modal-body p {
    margin-bottom: 1rem;
    color: #333333;
    line-height: 1.6;
}

.modal-body strong {
    color: #111111;
}

.legal-links a {
    transition: color 0.2s;
}
.legal-links a:hover {
    color: var(--color-accent);
}
