:root {
    --accent-color: #4ECDC4;
    --accent-dark: #3DB9B1;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --bg-light: #FAFBFC;
    --bg-white: #FFFFFF;
    --border-color: #E8ECEF;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
}

* {
    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;
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

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

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

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

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

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

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

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section {
    padding: 4rem 0;
}

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

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

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

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

.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.info-card h3 {
    color: var(--accent-color);
}

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

.content-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.content-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.image-grid .content-image {
    margin-bottom: 0;
}

.image-grid .content-image img {
    height: 180px;
}

.limits-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F6F5 100%);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
}

.limits-box h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.limits-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.limits-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.limits-box li::before {
    content: "\2022";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

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

.cta-section p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

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

.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    max-width: 500px;
    margin: 0 auto;
}

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

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.15);
    outline: none;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.footer {
    background: var(--text-primary);
    color: #B8C5D0;
    padding: 3rem 0 1.5rem;
}

.footer h5 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #B8C5D0;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

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

.footer-disclaimer {
    font-size: 0.875rem;
    color: #8FA3B3;
    margin-bottom: 0.5rem;
}

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

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

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--accent-color);
}

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

.btn-cookie {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
}

.btn-cookie-accept:hover {
    background: var(--accent-dark);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

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

.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F6F5 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

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

.page-header p {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.policy-content {
    padding: 2rem 0 4rem;
}

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

.policy-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

.policy-content p, .policy-content li {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

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

.thank-you-content h1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-section .content-text {
    font-size: 1.0625rem;
}

@media (max-width: 991px) {
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-grid .content-image img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    h1 {
        font-size: 1.625rem;
    }
    
    h2 {
        font-size: 1.375rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
