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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d3748;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --white: #ffffff;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 4rem 5%;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e9 100%);
}

.hero-text-block {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text-block p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(60px) translateX(-30px);
}

.hero-image-overlap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
    transform: translateX(40px);
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-right-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateY(80px) translateX(-20px);
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
}

.problem-section {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
    background: var(--dark-bg);
    color: var(--white);
    align-items: center;
}

.problem-visual {
    flex: 0.8;
    transform: translateX(-60px) rotate(-3deg);
}

.problem-visual img {
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.4);
}

.problem-text {
    flex: 1.2;
    padding-left: 3rem;
}

.problem-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.problem-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cbd5e0;
}

.cta-inline {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 3px;
    transition: transform 0.3s ease;
}

.cta-inline:hover {
    transform: translateX(10px);
}

.services-grid-offset {
    padding: 6rem 5% 8rem;
    background: var(--light-bg);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:nth-child(odd) {
    transform: translateY(-20px);
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

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

.trust-section-overlap {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--primary-color) 0%, #1e4620 100%);
    color: var(--white);
}

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-offset {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transform: rotate(-1deg);
}

.testimonial:nth-child(2) {
    transform: rotate(1deg) translateY(20px);
}

.testimonial:nth-child(3) {
    transform: rotate(-0.5deg);
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-style: normal;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 5%;
    gap: 3rem;
}

.benefit-block {
    flex: 1 1 300px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-left: 5px solid var(--accent-color);
}

.benefit-block:nth-child(1) {
    transform: translateX(-30px);
}

.benefit-block:nth-child(2) {
    transform: translateY(40px);
}

.benefit-block:nth-child(3) {
    transform: translateX(30px) translateY(-20px);
}

.benefit-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.booking-section-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 3rem;
    background: var(--white);
}

.booking-visual {
    flex: 0.8;
    transform: translateY(-40px) rotate(2deg);
}

.booking-visual img {
    border-radius: 20px;
    box-shadow: -15px 15px 50px rgba(0,0,0,0.2);
}

.booking-form-container {
    flex: 1.2;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 15px;
    transform: translateX(20px);
}

.booking-form-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    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-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.cta-sticky-trigger {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.footer-asymmetric {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col p {
    color: #a0aec0;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #718096;
}

.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 5%;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 90;
}

.sticky-footer-cta.show {
    display: flex;
}

.sticky-footer-cta span {
    font-weight: 600;
    font-size: 1.125rem;
}

.sticky-cta-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 200;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

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

.btn-accept:hover,
.btn-reject:hover {
    transform: scale(1.05);
}

.page-hero-offset {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4620 100%);
    color: var(--white);
    text-align: center;
}

.page-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
}

.about-story {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 0.9;
    transform: translateX(-40px) rotate(-2deg);
}

.story-image img {
    border-radius: 20px;
    box-shadow: -20px 20px 50px rgba(0,0,0,0.15);
}

.story-content {
    flex: 1.1;
    padding-left: 2rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mission-section-asymmetric {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
    background: var(--light-bg);
    align-items: center;
}

.mission-block {
    flex: 1.2;
    padding-right: 3rem;
    transform: translateX(30px);
}

.mission-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mission-visual {
    flex: 0.8;
    transform: translateY(-30px) rotate(2deg);
}

.mission-visual img {
    border-radius: 20px;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.15);
}

.values-section {
    padding: 6rem 5%;
}

.values-section h2 {
    font-size: 2.75rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-color);
}

.value-card:nth-child(1) {
    transform: translateY(-20px);
}

.value-card:nth-child(3) {
    transform: translateY(-20px);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-offset {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.team-section-offset h2 {
    font-size: 2.75rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.team-content {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.team-member:nth-child(1) {
    transform: translateY(-30px);
}

.team-member:nth-child(2) {
    transform: translateY(30px);
}

.team-photo {
    margin-bottom: 1.5rem;
}

.team-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.impact-section {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.impact-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.impact-label {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
}

.cta-section-asymmetric {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-box {
    max-width: 800px;
    text-align: center;
    padding: 4rem;
    background: var(--light-bg);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.services-detail-section {
    padding: 4rem 5%;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

.service-detail-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-highlight {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e9 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,107,53,0.3);
}

.workshop-info-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.workshop-info-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.booking-cta-section {
    padding: 6rem 5%;
    text-align: center;
    background: var(--white);
}

.booking-cta-section h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-cta-section p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-section-asymmetric {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info-block > p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.faq-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 6rem 5%;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thanks-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.25rem;
}

.thanks-details {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.thanks-info-box {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-info-box h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-service-info {
    padding: 4rem 5%;
    text-align: center;
}

.thanks-service-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-service-info p {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-additional {
    padding: 5rem 5%;
    background: var(--white);
}

.thanks-additional h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.additional-content {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
}

.additional-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.additional-card a {
    color: var(--accent-color);
    text-decoration: underline;
}

.thanks-cta {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-page {
    padding: 4rem 5%;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

.legal-content em {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: var(--light-bg);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-block {
        transform: none;
        padding-right: 0;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        transform: none;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .intro-left {
        transform: none;
    }

    .intro-right-offset {
        transform: none;
    }

    .problem-section {
        flex-direction: column;
    }

    .problem-visual {
        transform: none;
    }

    .problem-text {
        padding-left: 0;
    }

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

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        transform: none;
    }

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

    .testimonial {
        transform: none !important;
    }

    .benefit-block {
        transform: none !important;
    }

    .booking-section-offset {
        flex-direction: column;
    }

    .booking-visual {
        transform: none;
    }

    .booking-form-container {
        transform: none;
        padding: 2rem;
    }

    .sticky-footer-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .about-story {
        flex-direction: column;
    }

    .story-image {
        transform: none;
    }

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

    .mission-section-asymmetric {
        flex-direction: column;
    }

    .mission-block {
        transform: none;
        padding-right: 0;
    }

    .mission-visual {
        transform: none;
    }

    .team-member:nth-child(1),
    .team-member:nth-child(2) {
        transform: none;
    }

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

    .contact-section-asymmetric {
        flex-direction: column;
    }

    .impact-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-box {
        padding: 2rem;
        transform: none;
    }

    .cookie-table {
        font-size: 0.875rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}
