:root {
    --mint-green: #98D4BB;
    --mint-light: #E8F6F0;
    --mint-dark: #6BBF9E;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-border: #E0E0E0;
}

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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

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

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

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

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

.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mint-dark) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--mint-dark) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
    padding: 5rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section {
    padding: 5rem 0;
}

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

.section-mint {
    background: linear-gradient(180deg, var(--mint-light) 0%, var(--white) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--mint-green);
    border-radius: 2px;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: var(--mint-dark);
    margin-bottom: 1rem;
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.limits-box {
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
    border: 2px solid var(--mint-green);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.limits-box h3 {
    color: var(--mint-dark);
    margin-bottom: 1.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--mint-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-cta {
    background-color: var(--white);
    color: var(--mint-dark);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-mint {
    background-color: transparent;
    color: var(--mint-dark);
    border: 2px solid var(--mint-dark);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-mint:hover {
    background-color: var(--mint-dark);
    color: var(--white);
}

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--mint-green);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--mint-green);
}

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

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

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

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.page-header {
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.page-content {
    padding: 4rem 0;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-control {
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--mint-green);
    box-shadow: 0 0 0 3px rgba(152, 212, 187, 0.25);
}

.btn-submit {
    background-color: var(--mint-dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--text-dark);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--gray-light);
    border-radius: 8px;
}

.contact-info {
    background: var(--mint-light);
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

.contact-info h3 {
    color: var(--mint-dark);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.thank-you-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
}

.thank-you-box h1 {
    color: var(--mint-dark);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.cookie-banner a {
    color: var(--mint-green);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background-color: var(--mint-green);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background-color: var(--mint-dark);
    color: var(--white);
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    border-color: var(--white);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.single-image {
    margin-bottom: 1.5rem;
}

.single-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-grid img {
        height: 200px;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
