:root {
    --mint-green: #98D8C8;
    --mint-dark: #6FC9B3;
    --mint-light: #B8E8DA;
    --text-dark: #2C3E50;
    --text-light: #5A6C7D;
    --bg-light: #F7F9FB;
    --white: #FFFFFF;
    --border-color: #E0E7ED;
}

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

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

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

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mint-green);
    transition: color 0.3s ease;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--mint-green);
}

main {
    margin-top: 76px;
}

.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-section img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-section img:hover {
    transform: translateY(-5px);
}

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header .lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

.content-section.bg-light {
    background-color: var(--bg-light);
}

.content-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.content-section ul {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.content-section img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    height: auto;
}

.btn-mint {
    background-color: var(--mint-green);
    border: none;
    color: var(--white);
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-mint:hover {
    background-color: var(--mint-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(152, 216, 200, 0.3);
}

.info-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--mint-green);
}

.info-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
    color: var(--text-dark);
}

.info-box p,
.info-box ul {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.disclaimer-box {
    background-color: #FFF9E6;
    border: 2px solid #FFD700;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.disclaimer-box.large {
    padding: 3rem;
    margin: 3rem 0;
}

.disclaimer-box h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.disclaimer-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.disclaimer-box ul {
    margin-top: 1rem;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

.cta-box p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-box .btn-mint {
    background-color: var(--white);
    color: var(--mint-green);
}

.cta-box .btn-mint:hover {
    background-color: var(--bg-light);
    color: var(--mint-dark);
}

.principle-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.principle-box h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
    color: var(--mint-green);
}

.principle-box p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-details h3,
.contact-details h4 {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.contact-details p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--mint-green);
    box-shadow: 0 0 0 0.2rem rgba(152, 216, 200, 0.25);
}

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

.policy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.policy-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.policy-content a {
    color: var(--mint-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--mint-dark);
    text-decoration: underline;
}

.final-message {
    padding: 40px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.final-message p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-style: italic;
}

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--mint-light);
}

.footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--mint-light);
}

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

.footer small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: none;
}

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

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

.cookie-banner a {
    color: var(--mint-light);
    text-decoration: underline;
}

.cookie-banner .btn {
    background-color: var(--mint-green);
    border: none;
    color: var(--white);
    padding: 8px 24px;
    font-weight: 600;
}

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

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.85rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .navbar-nav {
        padding-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 1.85rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-section h2 {
        font-size: 1.65rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .principle-box {
        margin-bottom: 1.5rem;
    }
    
    .cookie-banner .btn {
        width: 100%;
        margin-top: 10px;
    }
}
