:root {
    --primary-color: #006d6d;
    --primary-dark: #004d4d;
    --primary-light: #008080;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

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

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

a:hover {
    color: var(--primary-dark);
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

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

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

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

.hero-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.125rem;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.section {
    padding: 5rem 0;
}

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

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.content-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-block.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

.context-disclaimer {
    background-color: #f0f7f7;
    border: 1px solid var(--primary-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.context-disclaimer h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.context-disclaimer ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.context-disclaimer li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.cultural-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cultural-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cultural-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cultural-item-content {
    padding: 1.5rem;
}

.cultural-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-section .card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-section .card-header {
    background-color: var(--bg-white);
    border-bottom: none;
    padding: 0;
}

.faq-section .btn-link {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section .btn-link:hover {
    color: var(--primary-color);
}

.faq-section .card-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 109, 109, 0.15);
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.contact-form .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 4rem 0 2rem;
}

.footer h4 {
    color: var(--bg-white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

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

.footer a:hover {
    color: var(--primary-light);
}

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

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

.footer-bottom {
    border-top: 1px solid #333333;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #888888;
    font-style: italic;
}

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

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

.cookie-banner p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cookie-banner .btn {
    margin-right: 0.5rem;
}

.page-header {
    padding: 8rem 0 3rem;
    background-color: var(--bg-light);
}

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

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

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

.examples-list {
    list-style: none;
    padding: 0;
}

.examples-list li {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.examples-list li h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.soft-cta {
    background: linear-gradient(135deg, #f0f7f7 0%, var(--bg-light) 100%);
    padding: 4rem 0;
    text-align: center;
}

.soft-cta h2 {
    margin-bottom: 1rem;
}

.soft-cta p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-section h1 {
        font-size: 3.25rem;
    }
    
    .cultural-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
}
