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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: #2d2d2d;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #417A5A;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.9;
    text-decoration: none;
}

.container {
    max-width: 1200px;
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #417A5A !important;
}

.nav-link {
    color: #2d2d2d !important;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #417A5A !important;
}

#hero {
    min-height: 100vh;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.92);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #417A5A;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.btn-primary {
    background-color: #417A5A;
    border-color: #417A5A;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 9px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #366448;
    border-color: #366448;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(65, 122, 90, 0.3);
}

.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background-color: #f8f9fa;
}

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 9px;
}

.info-box {
    background-color: #f0f5f2;
    padding: 1.5rem;
    border-radius: 9px;
    border-left: 4px solid #417A5A;
}

.info-box h4 {
    color: #417A5A;
    margin-bottom: 0.75rem;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.component-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 9px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.component-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.component-card h3 {
    color: #417A5A;
    margin-bottom: 1rem;
}

.fact-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 9px;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.fact-card h3 {
    color: #417A5A;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.disclaimer-box {
    background-color: #fff8e6;
    border: 2px solid #ffd966;
    padding: 2rem;
    border-radius: 9px;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.accordion .card {
    border: 1px solid #e0e0e0;
    border-radius: 9px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    color: #2d2d2d;
    font-weight: 600;
    text-decoration: none;
}

.accordion .btn-link:hover {
    color: #417A5A;
    text-decoration: none;
}

.accordion .card-body {
    padding: 1.5rem;
    font-size: 0.95rem;
}

.contact-info {
    background-color: #f0f5f2;
    padding: 2rem;
    border-radius: 9px;
}

.contact-info h3 {
    color: #417A5A;
    margin-bottom: 1.5rem;
}

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

.form-control {
    border-radius: 9px;
    border: 1px solid #d0d0d0;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: #417A5A;
    box-shadow: 0 0 0 0.2rem rgba(65, 122, 90, 0.15);
}

footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 3rem 0 2rem;
    margin-top: 80px;
}

footer h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

footer p {
    color: #d0d0d0;
    font-size: 0.95rem;
}

footer a {
    color: #ffffff;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #417A5A;
}

footer ul li {
    margin-bottom: 0.5rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 2rem;
    font-size: 0.95rem;
}

#acceptCookies {
    white-space: nowrap;
}

.policy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.policy-modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 9px;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.policy-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #666;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.policy-modal-close:hover {
    color: #417A5A;
}

#policyContent h2 {
    color: #417A5A;
    margin-bottom: 1.5rem;
}

#policyContent h3 {
    color: #2d2d2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#policyContent p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

#policyContent ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

#policyContent li {
    margin-bottom: 0.5rem;
}

.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.success-modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 3rem;
    border-radius: 9px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.success-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #666;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.success-modal-close:hover {
    color: #417A5A;
}

.success-modal-content h3 {
    color: #417A5A;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .policy-modal-content {
        margin: 10% 1rem;
        padding: 2rem 1.5rem;
    }
    
    #hero {
        margin-top: 56px;
    }
}
