body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #5A5A5A;
    background: #FFFFFF;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

a {
    transition: color 0.3s ease;
}

.navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    color: #2C2C2C;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.display-4 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 1rem;
}

.btn {
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 74, 0.2);
}

.form-control {
    background: white;
    border: 1px solid #D4CECC;
    border-radius: 4px;
    padding: 10px 15px;
    color: #5A5A5A;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #1A5F4A;
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 74, 0.15);
    background: white;
}

.form-group label {
    color: #2C2C2C;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero-section p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.95);
}

img {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}

footer {
    border-top: 1px solid #E8E4DF;
}

footer a {
    color: #A8D5BA;
    text-decoration: none;
}

footer a:hover {
    color: #B8E4C9;
    text-decoration: underline;
}

#cookieBanner {
    animation: slideUp 0.3s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem !important;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        min-height: 350px !important;
    }
    
    #cookieBanner .col-md-9,
    #cookieBanner .col-md-3 {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem !important;
    }
    
    .hero-section {
        min-height: 300px !important;
    }
    
    .navbar-brand {
        font-size: 1.2rem !important;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
