:root {
    --deep-teal: #006d77;
    --deep-teal-dark: #005a63;
    --deep-teal-light: #83c5be;
    --neutral-light: #f8f9fa;
    --neutral-gray: #6c757d;
    --neutral-dark: #212529;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--white);
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-dark);
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--neutral-gray);
}

a {
    color: var(--deep-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--deep-teal-dark);
    text-decoration: none;
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-teal);
}

.navbar-brand:hover {
    color: var(--deep-teal-dark);
}

.navbar-nav .nav-link {
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--deep-teal);
}

.navbar-toggler {
    border-color: var(--deep-teal);
}

.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='%23006d77' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
    padding-top: 80px;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: var(--neutral-light);
}

.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--white) 100%);
}

.hero-section h1 {
    font-size: 2.5rem;
    color: var(--neutral-dark);
}

.hero-section p {
    font-size: 1.125rem;
}

.content-image {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.two-col-layout .col-text {
    flex: 1;
    min-width: 280px;
}

.two-col-layout .col-image {
    flex: 1;
    min-width: 280px;
}

.two-col-layout.reverse {
    flex-direction: row-reverse;
}

.card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: var(--white);
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-custom .card-body {
    padding: 1.5rem;
}

.card-custom .card-title {
    color: var(--deep-teal);
    font-weight: 600;
}

.btn-teal {
    background-color: var(--deep-teal);
    border-color: var(--deep-teal);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: var(--deep-teal-dark);
    border-color: var(--deep-teal-dark);
    color: var(--white);
}

.btn-outline-teal {
    background-color: transparent;
    border: 2px solid var(--deep-teal);
    color: var(--deep-teal);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-teal:hover {
    background-color: var(--deep-teal);
    color: var(--white);
}

.text-teal {
    color: var(--deep-teal);
}

.bg-teal {
    background-color: var(--deep-teal);
}

.disclaimer-box {
    background-color: var(--neutral-light);
    border-left: 4px solid var(--deep-teal);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.disclaimer-box p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--neutral-gray);
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item .card-header {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0;
}

.faq-item .btn-link {
    color: var(--neutral-dark);
    font-weight: 500;
    text-align: left;
    width: 100%;
    padding: 1rem 1.25rem;
    text-decoration: none;
}

.faq-item .btn-link:hover {
    color: var(--deep-teal);
}

.faq-item .card-body {
    padding: 1.25rem;
    color: var(--neutral-gray);
}

.form-control {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--deep-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 109, 119, 0.15);
}

.contact-info {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info h3 {
    color: var(--deep-teal);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

footer {
    background-color: var(--neutral-dark);
    color: var(--neutral-light);
    padding: 3rem 0 1.5rem;
}

footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

footer a {
    color: var(--deep-teal-light);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-disclaimer {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--neutral-dark);
    color: var(--white);
    padding: 1rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.cookie-banner .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.page-header {
    background-color: var(--neutral-light);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    margin-bottom: 0;
}

.policy-content {
    padding: 2rem 0 4rem;
}

.policy-content h2 {
    margin-top: 2rem;
    color: var(--deep-teal);
}

.policy-content h3 {
    margin-top: 1.5rem;
}

.policy-content ul {
    padding-left: 1.25rem;
    color: var(--neutral-gray);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .two-col-layout {
        flex-direction: column;
    }
    
    .two-col-layout.reverse {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    main {
        padding-top: 70px;
    }
}
