*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f8fafc;
    color: #1e293b;
}



a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: #1e40af;
}



.btn-accent {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.65rem 1.8rem;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-accent:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
    color: #ffffff;
}

.btn-accent:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}



header .navbar {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.55);
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-logo {
    height: 42px;
    width: 42px;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(193, 120, 85, 0.3));
}

.brand-text {
    display: inline-block;
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e2e8f0 !important;
    opacity: 0.85;
    padding: 0.5rem 0.9rem !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.15rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: rgba(37, 99, 235, 0.5);
}



.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    overflow: hidden;
    background: radial-gradient(circle at top left, #2563eb 0, #1e293b 45%, #0f172a 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: saturate(1.1);
    z-index: 1;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 3vw, 2.9rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.7;
}



.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #1e293b;
}

.section-header p {
    color: #475569;
    max-width: 680px;
    margin: 0.3rem auto 0;
}

.section-header.text-center h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.section-header.text-center h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.15rem;
    transform: translateX(-50%);
    width: 82px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}



section {
    position: relative;
}

.section-bg {
    background: #1e293b;
    color: #e2e8f0;
}

.section-bg .section-header h2 {
    color: #e2e8f0;
}

.section-bg .section-header p {
    color: #cbd5e1;
}



.benefit-item {
    padding: 1.1rem 0.2rem;
}

.benefit-icon {
    font-size: 2.3rem;
    margin-right: 0.8rem;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 18px;
    padding: 0.4rem;
}

.benefit-item h5 {
    font-family: "Playfair Display", serif;
    font-size: 1.08rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.92rem;
    color: #475569;
}

.section-bg .benefit-item p {
    color: #cbd5e1;
}



.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 14px 35px rgba(30, 41, 59, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-bg .stat-card {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(37, 99, 235, 0.35);
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.95rem;
    color: #475569;
}

.section-bg .stat-text {
    color: #e2e8f0;
}



.article-content h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.article-content p {
    font-size: 0.96rem;
    color: #334155;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.section-bg .article-content p {
    color: #cbd5e1;
}



.contact-form .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
}

.section-bg .contact-form .form-label {
    color: #e2e8f0;
}

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.4);
    padding: 0.65rem 0.8rem;
    font-size: 0.95rem;
    background: #ffffff;
}

.section-bg .contact-form .form-control {
    background: rgba(15, 23, 42, 0.7);
    color: #e2e8f0;
    border-color: rgba(37, 99, 235, 0.5);
}

.contact-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}



.contact-info {
    font-size: 0.96rem;
    color: #334155;
}

.section-bg .contact-info {
    color: #e2e8f0;
}

.contact-email {
    color: #2563eb;
}

.contact-email:hover {
    color: #60a5fa;
}



.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: radial-gradient(circle at top, #2563eb 0, #1e293b 45%, #0f172a 100%);
}

.thank-you-card {
    background: rgba(15, 23, 42, 0.96);
    color: #e2e8f0;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(37, 99, 235, 0.4);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
    position: relative;
    overflow: hidden;
}

.thank-you-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0.09;
    background: radial-gradient(circle at top left, #60a5fa 0, transparent 45%),
        radial-gradient(circle at bottom right, #2563eb 0, transparent 55%);
    pointer-events: none;
}

.thank-you-icon {
    position: relative;
    display: inline-flex;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #60a5fa, #2563eb);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.thank-you-icon .material-icons-outlined {
    font-size: 2.1rem;
    color: #0f172a;
}

.thank-you-title {
    position: relative;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thank-you-message {
    position: relative;
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 0.9rem;
}

.thank-you-submessage {
    position: relative;
    font-size: 0.96rem;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto;
}

.thank-you-actions {
    position: relative;
}



.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    color: #e2e8f0;
    padding: 0.85rem 0;
    font-size: 0.92rem;
    z-index: 1200;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.85);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner p {
    margin-bottom: 0;
    color: #cbd5e1;
}

.cookie-banner a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #2563eb;
}



footer {
    font-size: 0.92rem;
}

footer h5,
footer h6 {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-weight: 600;
}

footer p {
    color: #cbd5e1;
}

footer a.text-light {
    opacity: 0.85;
}

footer a.text-light:hover {
    opacity: 1;
}

.footer-logo {
    height: 35px;
    width: 35px;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}



img.img-fluid {
    border-radius: 18px;
}



@media (max-width: 991.98px) {
    body {
        padding-top: 64px;
    }

    .hero-overlay {
        padding: 4.2rem 0 3rem;
    }

    .thank-you-card {
        padding: 2.4rem 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .thank-you-card {
        padding: 2rem 1.4rem;
    }

    .thank-you-section {
        padding: 5rem 0 3rem;
    }
}

.content-section {
    color: #1e293b;
}

.content-section h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.content-section p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1rem;
}
