:root {
    --primary-color: #2E7D32;
    --secondary-color: #FFA726;
    --accent-color: #5E35B1;
    --bg-light: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-dark: #1B5E20;
    --text-primary: #212121;
    --text-secondary: #424242;
    --text-light: #FFFFFF;
    --success-color: #43A047;
    --warning-color: #FB8C00;
    --info-color: #039BE5;
    --error-color: #E53935;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

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

body {
    font-family: 'Rubik', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.main-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    padding: 0;
    z-index: 1000;
}

.main-nav .uk-navbar-nav > li > a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
    padding: 0 20px;
    transition: var(--transition);
    position: relative;
}

.main-nav .uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav .uk-navbar-nav > li > a:hover::after {
    width: 80%;
}

.lang-switcher {
    margin-left: 20px;
}

.lang-link {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.95) 0%, rgba(27, 94, 32, 0.95) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    color: var(--secondary-color);
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave::before {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 60px;
    background: var(--bg-light);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.cta-button {
    background: var(--secondary-color);
    color: var(--text-primary);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: #FF9800;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

.stats-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.stat-card {
    background: var(--bg-light);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefits-section {
    padding: 100px 0;
}

.benefit-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--text-light);
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.activities-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.activity-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.activity-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 32px;
}

.activity-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.activity-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.activity-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 2px solid var(--bg-secondary);
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.activity-meta i {
    color: var(--accent-color);
}

.methodology-section {
    padding: 100px 0;
}

.methodology-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.methodology-list {
    list-style: none;
    margin-top: 32px;
}

.methodology-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    transition: var(--transition);
}

.methodology-list li:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateX(10px);
}

.methodology-list i {
    font-size: 24px;
    color: var(--success-color);
    flex-shrink: 0;
}

.methodology-list li:hover i {
    color: var(--secondary-color);
}

.methodology-list strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.methodology-list span {
    font-size: 15px;
    line-height: 1.6;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-info {
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 10px;
    background-color: var(--bg-light);
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.iti {
    width: 100%;
}

.checkbox-group {
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.main-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.thanks-section {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    padding: 60px;
    background: var(--bg-secondary);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon i {
    font-size: 60px;
    color: var(--text-light);
}

.thanks-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-submessage {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-actions {
    margin-bottom: 50px;
}

.thanks-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.info-step {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.info-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.legal-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-date {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--accent-color);
}

.legal-content strong {
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--primary-color);
    color: var(--text-light);
}

.cookie-table th,
.cookie-table td {
    padding: 16px;
    text-align: left;
}

.cookie-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-table tbody tr:hover {
    background: rgba(46, 125, 50, 0.05);
}

.cookie-settings-button {
    margin-top: 48px;
    text-align: center;
}

@media (max-width: 960px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .contact-form-wrapper {
        padding: 32px;
    }
    
    .thanks-content {
        padding: 40px 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .activity-meta {
        flex-direction: column;
        gap: 12px;
    }
}