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

:root {
    --primary-green: #2d6a4f;
    --secondary-green: #52b788;
    --light-green: #b7e4c7;
    --dark-green: #1b4332;
    --cream: #f8f9f0;
    --grey-light: #e8ede7;
    --grey-medium: #95a19b;
    --grey-dark: #3a4a42;
    --white: #ffffff;
    --black: #1a1a1a;
    --accent-blue: #4a8fb7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-green);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--secondary-green);
    color: var(--white);
}

.btn-cookie:hover {
    background: var(--primary-green);
}

.btn-cookie-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie-secondary:hover {
    background: var(--white);
    color: var(--dark-green);
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu li a {
    color: var(--grey-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: 80px 60px;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    color: var(--dark-green);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 32px;
}

.hero-right {
    background: var(--grey-light);
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45,106,79,0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-light {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.stats-band {
    background: var(--primary-green);
    padding: 48px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 24px;
}

.stat-item {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

.split-content {
    display: flex;
    min-height: 550px;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.split-image-left,
.split-image-right {
    flex: 1;
    background: var(--grey-light);
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text-left,
.split-text-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary-green);
    margin-bottom: 16px;
}

.split-text-left h2,
.split-text-right h2 {
    font-size: 38px;
    line-height: 1.25;
    color: var(--dark-green);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-text-left p,
.split-text-right p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 18px;
}

.link-arrow {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    margin-top: 16px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.services-cards {
    padding: 100px 0;
    background: var(--cream);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 64px;
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    flex: 0 0 calc(33.333% - 22px);
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 2px solid var(--secondary-green);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--secondary-green);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
}

.btn-card {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-card:hover {
    background: var(--primary-green);
    color: var(--white);
}

.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    flex: 1;
    background: var(--cream);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-green);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--dark-green);
    margin-bottom: 4px;
}

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

.cta-form-section {
    padding: 100px 0;
    background: var(--grey-light);
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--dark-green);
    margin-bottom: 16px;
}

.form-header p {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.6;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--grey-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    padding: 16px 32px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.info-split {
    display: flex;
}

.info-block {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.info-block.bg-dark {
    background: var(--dark-green);
    color: var(--white);
}

.info-block.bg-green {
    background: var(--secondary-green);
    color: var(--white);
}

.info-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 64px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-btn {
    padding: 16px 32px;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(74,143,183,0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #3a7a9a;
    transform: scale(1.05);
}

.page-hero {
    background: var(--cream);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero .lead {
    font-size: 20px;
    color: var(--grey-dark);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-hero-small {
    background: var(--cream);
    padding: 80px 0 40px;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 700;
}

.page-hero-small p {
    font-size: 15px;
    color: var(--grey-medium);
}

.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 0 0 calc(50% - 16px);
    padding: 40px;
    background: var(--cream);
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-dark);
}

.team-section {
    padding: 100px 0;
    background: var(--grey-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
    justify-content: center;
}

.team-member {
    flex: 0 0 calc(50% - 16px);
    max-width: 520px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--grey-light);
}

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

.team-member h3,
.member-title,
.team-member p {
    padding: 0 32px;
}

.team-member h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-top: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-title {
    font-size: 15px;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-dark);
    margin-bottom: 32px;
}

.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-green);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    min-width: 60px;
    text-align: right;
}

.timeline-year::after {
    content: '';
    position: absolute;
    left: 76px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--secondary-green);
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    padding-left: 24px;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-dark);
}

.cta-simple {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
}

.cta-simple h2 {
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-simple p {
    font-size: 18px;
    color: var(--grey-dark);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    background: var(--grey-light);
    height: 500px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--dark-green);
    margin-bottom: 16px;
    font-weight: 700;
}

.price-tag {
    display: inline-block;
    background: var(--light-green);
    color: var(--dark-green);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin: 32px 0 16px;
    font-weight: 600;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-dark);
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: 700;
}

.process-section {
    padding: 100px 0;
    background: var(--cream);
}

.process-steps {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 12px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-dark);
}

.funding-info {
    padding: 100px 0;
    background: var(--white);
}

.funding-info h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.funding-info > p {
    text-align: center;
    font-size: 17px;
    color: var(--grey-dark);
    max-width: 720px;
    margin: 0 auto 48px;
}

.funding-grid {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.funding-card {
    flex: 1;
    background: var(--cream);
    padding: 40px 32px;
    border-radius: 12px;
}

.funding-card h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.funding-card ul {
    list-style: none;
}

.funding-card ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--grey-dark);
}

.funding-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: 700;
    font-size: 20px;
}

.contact-split {
    display: flex;
    gap: 60px;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--dark-green);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.info-block-contact h3 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-block-contact p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 8px;
}

.info-block-contact a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.info-block-contact a:hover {
    text-decoration: underline;
}

.info-block-contact .note {
    font-size: 14px;
    color: var(--grey-medium);
    font-style: italic;
}

.contact-map {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.map-placeholder {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--grey-light);
    min-height: 400px;
}

.map-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--grey-medium);
    text-align: center;
}

.faq-section {
    padding: 100px 0;
    background: var(--cream);
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 64px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 0 0 calc(50% - 16px);
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-dark);
}

.thanks-section {
    padding: 120px 0;
    background: var(--cream);
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--white);
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--grey-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-confirmation {
    background: var(--light-green);
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--dark-green);
    font-weight: 500;
}

.thanks-note {
    font-size: 15px;
    color: var(--grey-dark);
    line-height: 1.6;
    margin-bottom: 40px;
}

.thanks-note a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.next-steps {
    padding: 80px 0;
    background: var(--white);
}

.next-steps h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-green);
    margin-bottom: 48px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.step-card {
    flex: 1;
    background: var(--cream);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    line-height: 48px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-dark);
}

.resources-section {
    padding: 80px 0;
    background: var(--grey-light);
}

.resources-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.resources-section > .container > p {
    text-align: center;
    font-size: 17px;
    color: var(--grey-dark);
    margin-bottom: 48px;
}

.resources-grid {
    display: flex;
    gap: 32px;
}

.resource-card {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.resource-card h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.resource-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-dark);
    margin-bottom: 16px;
}

.legal-content {
    padding: 60px 0 100px;
    background: var(--white);
}

.legal-content h2 {
    font-size: 32px;
    color: var(--dark-green);
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin: 28px 0 16px;
    font-weight: 600;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 24px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 8px;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 32px;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content {
        flex-direction: column;
        min-height: auto;
    }

    .split-content.reverse {
        flex-direction: column;
    }

    .split-text-left,
    .split-text-right {
        padding: 60px 32px;
    }

    .service-card {
        flex: 0 0 calc(50% - 16px);
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .info-split {
        flex-direction: column;
    }

    .team-member {
        flex: 0 0 100%;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps {
        flex-direction: column;
    }

    .funding-grid {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .faq-item {
        flex: 0 0 100%;
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-card {
        flex: 0 0 calc(50% - 12px);
    }

    .resources-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 24px 0;
        gap: 16px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12px);
    }

    .service-card {
        flex: 0 0 100%;
    }

    .section-title-center {
        font-size: 32px;
    }

    .split-text-left h2,
    .split-text-right h2 {
        font-size: 28px;
    }

    .value-card {
        flex: 0 0 100%;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-year {
        text-align: left;
    }

    .timeline-year::after {
        left: -4px;
    }

    .timeline-content {
        padding-left: 0;
    }

    .form-container {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-secondary {
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .step-card {
        flex: 0 0 100%;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
