* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #F6F8F9;
    --gradient-start: #7FCBC3;
    --gradient-end: #F6B2A1;
    --accent: #E96F5A;
    --secondary: #A3D8D3;
    --text-primary: #2E2E2E;
    --text-secondary: rgba(46, 46, 46, 0.65);
    --white: #ffffff;
    --light-bg: #FAFBFC;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 2px solid var(--secondary);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.cookie-link {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 203, 195, 0.3);
}

.header {
    background: var(--white);
    border-bottom: 1px solid rgba(127, 203, 195, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 203, 195, 0.3);
}

.hero {
    background: linear-gradient(135deg, rgba(127, 203, 195, 0.15), rgba(246, 178, 161, 0.15));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 203, 195, 0.2), transparent);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(127, 203, 195, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.section-light {
    background: var(--light-bg);
    padding: 5rem 0;
}

.section-white {
    background: var(--white);
    padding: 5rem 0;
}

.section-disclaimer {
    background: linear-gradient(135deg, rgba(163, 216, 211, 0.1), rgba(246, 178, 161, 0.1));
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.section-text-small {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(127, 203, 195, 0.2);
}

.card-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-box {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.disclaimer-box {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(233, 111, 90, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.custom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.disclaimer-text {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 111, 90, 0.2);
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.methodology-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    flex-shrink: 0;
}

.direction-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.direction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(127, 203, 195, 0.25);
}

.direction-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.direction-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 1.5rem 1.5rem 0.75rem;
}

.direction-text {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(127, 203, 195, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(127, 203, 195, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.disclaimer-small {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
}

.contact-info {
    background: linear-gradient(135deg, rgba(127, 203, 195, 0.1), rgba(246, 178, 161, 0.1));
    padding: 2rem;
    border-radius: 24px;
    border: 2px solid rgba(127, 203, 195, 0.2);
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-info-item {
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--gradient-start);
    text-decoration: underline;
}

.footer {
    background: var(--white);
    border-top: 1px solid rgba(127, 203, 195, 0.2);
    color: var(--text-primary);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-text a {
    color: var(--accent);
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(127, 203, 195, 0.2);
}

.footer-operator {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-operator p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .methodology-steps {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        transform: rotate(90deg);
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-button {
        width: 100%;
    }
}
