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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.09rem;
    line-height: 1.72;
    color: #2c3e50;
    background-color: #FEFEFE;
}

h1 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #004D40;
}

h2 {
    font-size: 2.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #004D40;
}

h3 {
    font-size: 1.48rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #004D40;
}

p {
    margin-bottom: 12px;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    padding: 12px 0;
}

.header-fixed .navbar {
    padding: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004D40 !important;
    transition: color 0.32s ease;
}

.navbar-brand:hover {
    color: #00695c !important;
}

.nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    transition: color 0.32s ease;
    padding: 12px 24px !important;
}

.nav-link:hover {
    color: #004D40 !important;
}

.content-wrapper {
    padding-top: 84px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 48px;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.85) 0%, rgba(0, 105, 92, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 24px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.section-spacing {
    padding: 60px 0;
}

.content-image-left,
.content-image-right {
    margin-bottom: 24px;
}

.content-image-left img,
.content-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.disclaimer-box {
    background-color: #f5f5f5;
    border-left: 4px solid #004D40;
    padding: 24px;
    margin: 36px 0;
    border-radius: 4px;
}

.disclaimer-box h3 {
    margin-top: 0;
}

.btn-primary {
    background-color: #004D40;
    border-color: #004D40;
    color: #ffffff;
    padding: 12px 36px;
    font-weight: 600;
    transition: all 0.32s ease;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #00695c;
    border-color: #00695c;
    box-shadow: 0 4px 14px rgba(0, 77, 64, 0.2);
    transform: translateY(-2px);
}

.faq-item {
    margin-bottom: 24px;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
    transition: border-color 0.32s ease;
}

.form-control:focus {
    border-color: #004D40;
    box-shadow: 0 0 0 0.2rem rgba(0, 77, 64, 0.15);
}

footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 48px 0 24px;
    margin-top: 60px;
}

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

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.32s ease;
}

footer a:hover {
    color: #004D40;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 36px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

.cookie-banner p {
    margin-bottom: 12px;
}

.cookie-banner .btn {
    margin-right: 12px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-spacing {
        padding: 36px 0;
    }
    
    .navbar-collapse {
        background-color: #ffffff;
        padding: 12px;
        border-radius: 4px;
        margin-top: 12px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    }
}

@media (min-width: 992px) {
    .content-image-left {
        float: left;
        width: 45%;
        margin-right: 36px;
    }
    
    .content-image-right {
        float: right;
        width: 45%;
        margin-left: 36px;
    }
}
