* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #1a2b3c;
    --navy-blue-light: #243447;
    --cyan-bright: #00b4d8;
    --cyan-accent: #0dcaf0;
    --dark-gray: #2c3e50;
    --off-white: #ffffff;
    --light-bg: #f8f9fa;
}

body {
    font-family: "Lora", serif;
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: var(--navy-blue);
}

nav.scrolled {
    background: var(--navy-blue);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 186px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    color: var(--off-white);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--cyan-bright);
}

.language-selector {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    color: var(--off-white);
    cursor: pointer;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    transition: all 0.3s;
}

.lang-btn.active {
    background: var(--cyan-bright);
    color: var(--off-white);
    border-color: var(--cyan-bright);
}

.lang-btn:hover {
    background: var(--cyan-accent);
    border-color: var(--cyan-accent);
    color: var(--off-white);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--off-white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 50%, var(--cyan-bright) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 180, 216, 0.2);
    border-color: var(--cyan-bright);
}

.stat-number {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 42px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 45px;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-primary {
    background: var(--cyan-bright);
    color: var(--off-white);
    border: none;
}

.btn-primary:hover {
    background: var(--cyan-accent);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(26, 43, 60, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
    border-color: var(--cyan-bright);
}

.about-card h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.about-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Portfolio Section */
.portfolio {
    background: var(--light-bg);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 10px;
    padding: 20px;
}

.logo-item:hover {
    background: rgba(0, 180, 216, 0.05);
    transform: translateY(-5px);
}

.logo-item:active {
    transform: scale(0.95);
}

.logo-item img {
    max-width: 180px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--navy-blue);
    background: var(--off-white);
    color: var(--navy-blue);
    border-radius: 30px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--cyan-bright);
    color: var(--off-white);
    border-color: var(--cyan-bright);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--off-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(26, 43, 60, 0.1);
    transition: all 0.3s;
    display: none;
    border: 2px solid transparent;
}

.portfolio-item.show {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
    border-color: var(--cyan-bright);
}

.portfolio-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.portfolio-logo img {
    max-width: 200px;
    max-height: 80px;
}

.portfolio-item h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.portfolio-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.portfolio-item .category-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--cyan-bright);
    border-radius: 20px;
    font-size: 12px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.portfolio-link {
    color: var(--cyan-bright);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.portfolio-link:hover {
    color: var(--cyan-accent);
    text-decoration: underline;
}

/* Team Section */
.team {
    background: var(--off-white);
}

/* CSC Section */
.csc {
    background: var(--off-white);
}

.csc-hero {
    text-align: center;
    padding: 40px 0 60px;
}

.csc-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--cyan-bright);
    border-radius: 20px;
    font-size: 14px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.csc-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--cyan-bright);
    border: 2px solid var(--cyan-bright);
}

.btn-secondary:hover {
    background: var(--cyan-bright);
    color: var(--off-white);
}

.csc-overview {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--cyan-bright);
}

.csc-overview p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.csc-section-title {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy-blue);
}

/* Pilares */
.csc-pillars {
    margin-bottom: 80px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(26, 43, 60, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
    border-color: var(--cyan-bright);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.pillar-card h4 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
    text-align: center;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
}

.pillar-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.pillar-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--cyan-bright);
    font-weight: 700;
}

/* Processo */
.csc-process {
    margin-bottom: 80px;
    background: var(--light-bg);
    padding: 60px 40px;
    border-radius: 20px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 30px;
    font-size: 24px;
    color: var(--cyan-bright);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--cyan-bright);
    color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.3);
}

.process-step h5 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Benefícios */
.csc-benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.benefits-column h3 {
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 15px 0;
    font-size: 18px;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-bg);
}

/* Métricas */
.csc-metrics {
    margin-bottom: 80px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan-bright);
    background: var(--off-white);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}

.metric-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.metric-label {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan-bright);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.metric-value {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.metric-desc {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.4;
}

/* FAQ */
.csc-faq {
    margin-bottom: 80px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--off-white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(26, 43, 60, 0.08);
    transition: all 0.3s;
    border-left: 4px solid var(--light-bg);
}

.faq-item:hover {
    border-left-color: var(--cyan-bright);
    box-shadow: 0 5px 25px rgba(0, 180, 216, 0.15);
}

.faq-question {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* CTA Final */
.csc-final-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--cyan-bright) 100%);
    border-radius: 20px;
    color: var(--off-white);
}

.csc-final-cta h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.csc-final-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.csc-final-cta .btn-primary {
    background: var(--off-white);
    color: var(--cyan-bright);
}

.csc-final-cta .btn-primary:hover {
    background: var(--light-bg);
    transform: scale(1.05);
}

.team-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    background: var(--off-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 60, 0.15);
    border: 2px solid var(--light-bg);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.team-info h4 {
    font-size: 22px;
    color: var(--cyan-bright);
    margin-bottom: 30px;
    font-style: italic;
}

.team-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.team-tag {
    padding: 8px 20px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 14px;
    font-family: "Source Sans Pro", sans-serif;
    color: var(--dark-gray);
    border: 1px solid var(--cyan-bright);
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--off-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 60, 0.15);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-family: "Lora", serif;
    font-size: 16px;
    transition: border 0.3s;
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-bright);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    background: var(--cyan-bright);
    color: var(--off-white);
    border: none;
    padding: 18px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--cyan-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--light-bg);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark-gray);
}

/* Footer */
footer {
    background: var(--navy-blue);
    color: var(--off-white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    width: 186px;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-blue);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Carousel Mobile */
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .carousel-arrow.prev {
        left: 0;
    }

    .carousel-arrow.next {
        right: 0;
    }

    .carousel-wrapper {
        padding: 0 45px;
    }

    .carousel-slide {
        gap: 20px;
        justify-content: center;
    }

    .logo-item {
        flex: 0 0 40%;
        max-width: 150px;
    }

    .logo-item img {
        max-width: 100%;
        max-height: 70px;
    }

    .team-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    /* CSC Mobile */
    .csc-overview {
        padding: 30px 20px;
    }

    .csc-section-title {
        font-size: 28px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-step:not(:last-child)::after {
        content: "↓";
        right: auto;
        top: auto;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .csc-benefits-section {
        grid-template-columns: 1fr;
    }

    /* Portfolio Grid Mobile */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 10px;
    }

    .logo-item {
        min-height: 80px;
        padding: 15px;
    }

    .logo-item img {
        max-width: 120px;
        max-height: 60px;
    }
}

/* Modal de Feedback */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.modal-icon.success {
    color: #28a745;
}

.modal-icon.error {
    color: #dc3545;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.modal-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.modal-email {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin: 15px 0;
}

.modal-email:hover {
    text-decoration: underline;
}

.modal-button {
    background: var(--gold);
    color: #1a2b3c;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.modal-button:hover {
    background: #00b4d8;
    transform: translateY(-2px);
}