/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

/* Navigation - Split Layout */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F2D;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    color: #333;
    font-weight: 500;
}

.nav-right a:hover,
.nav-right a.active {
    color: #2C5F2D;
}

.nav-cta {
    background: #2C5F2D;
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
}

.nav-cta:hover {
    background: #234a24;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-large,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary,
.btn-large,
.btn-submit {
    background: #2C5F2D;
    color: #fff;
}

.btn-primary:hover,
.btn-large:hover,
.btn-submit:hover {
    background: #234a24;
    transform: translateY(-2px);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    border: 2px solid #2C5F2D;
    color: #2C5F2D;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: #2C5F2D;
    color: #fff;
}

.btn-outline-large {
    padding: 1rem 2.5rem;
    border: 2px solid #2C5F2D;
    color: #2C5F2D;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
}

.btn-outline-large:hover {
    background: #2C5F2D;
    color: #fff;
}

.btn-service {
    background: #2C5F2D;
    color: #fff;
    width: 100%;
    margin-top: 1rem;
}

.btn-service:hover {
    background: #234a24;
}

/* Intro Offset Section */
.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: #f9f9f9;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2C5F2D;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 1rem;
}

/* Services Preview */
.services-preview {
    padding: 6rem 5%;
}

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

.services-header h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #2C5F2D;
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
}

.service-cta:hover {
    background: #234a24;
}

.services-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Why Us Split */
.why-us-split {
    display: flex;
    align-items: center;
    background: #f9f9f9;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.why-content {
    flex: 1;
    padding: 4rem 5%;
}

.why-content h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    margin-bottom: 3rem;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item h4 {
    font-size: 1.4rem;
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: #666;
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 5%;
    background: #fff;
}

.portfolio-section h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.portfolio-item {
    flex: 1 1 calc(25% - 1.5rem);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Testimonials Split */
.testimonials-split {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.testimonials-content h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    margin-bottom: 3rem;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #2C5F2D;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.95rem;
}

/* Order Form Section */
.order-form-section {
    padding: 6rem 5%;
    background: #fff;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.order-form {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    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: #2C5F2D;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* CTA Final */
.cta-final,
.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 5%;
    background: #2C5F2D;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #2C5F2D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: #2C5F2D;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: #2C5F2D;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2C5F2D;
    color: #fff;
}

.btn-accept:hover {
    background: #234a24;
}

.btn-reject {
    background: transparent;
    border: 2px solid #666;
    color: #fff;
}

.btn-reject:hover {
    background: #666;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #2C5F2D;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #234a24;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2C5F2D 0%, #234a24 100%);
    padding: 5rem 5%;
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    color: #e0e0e0;
    font-size: 1.3rem;
}

/* Story Split (About Page) */
.story-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.story-content {
    flex: 1;
    padding: 4rem 5%;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #2C5F2D;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.values-section h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.value-icon {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.value-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Split */
.team-split {
    display: flex;
    background: #fff;
}

.team-content {
    flex: 1.5;
    padding: 6rem 5%;
}

.team-content h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member h4 {
    font-size: 1.4rem;
    color: #2C5F2D;
    margin-bottom: 0.3rem;
}

.role {
    display: block;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

.team-image {
    flex: 1;
}

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

/* Process Section */
.process-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.process-section h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 1rem;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2C5F2D;
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 0.7rem;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* Numbers Section */
.numbers-section {
    padding: 6rem 5%;
    background: #2C5F2D;
}

.numbers-section h2 {
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
}

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

.number-item {
    flex: 1 1 calc(33.333% - 2rem);
    text-align: center;
    padding: 2rem;
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.number-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* Services Detail (Services Page) */
.services-intro {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features h4 {
    color: #2C5F2D;
    margin-bottom: 1rem;
}

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

.service-features ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.service-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: 700;
}

.price-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #2C5F2D;
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    color: #888;
    font-size: 0.9rem;
}

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

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

/* Additional Services */
.additional-services {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.additional-services h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 4rem;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.additional-item {
    flex: 1 1 calc(33.333% - 2rem);
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.additional-item h3 {
    font-size: 1.3rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.additional-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.additional-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F2D;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: #fff;
}

.faq-section h2 {
    font-size: 2.8rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact Split */
.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    padding: 4rem 5%;
    background: #f9f9f9;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 2.5rem;
    color: #2C5F2D;
    margin-bottom: 2rem;
}

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

.contact-detail h4 {
    font-size: 1.3rem;
    color: #2C5F2D;
    margin-bottom: 0.7rem;
}

.contact-detail p {
    color: #666;
    line-height: 1.7;
}

.contact-detail a {
    color: #2C5F2D;
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.5rem;
}

.visit-info,
.working-process {
    margin-bottom: 3rem;
}

.visit-info h3,
.working-process h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.visit-info p,
.working-process p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    background: #2C5F2D;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.1rem;
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.step-info p {
    font-size: 0.95rem;
    color: #666;
}

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

.map-placeholder {
    flex: 1;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(44, 95, 45, 0.95);
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
}

.studio-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Transport Section */
.transport-section {
    padding: 4rem 5%;
    background: #fff;
}

.transport-section h2 {
    font-size: 2.5rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
}

.transport-grid {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.transport-item {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.transport-item h4 {
    font-size: 1.3rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.transport-item p {
    color: #666;
    line-height: 1.7;
}

/* Quick Questions */
.quick-questions {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.questions-content h2 {
    font-size: 2.5rem;
    color: #2C5F2D;
    margin-bottom: 3rem;
}

.qa-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
}

.qa-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.qa-item h4 {
    font-size: 1.2rem;
    color: #2C5F2D;
    margin-bottom: 0.7rem;
}

.qa-item p {
    color: #666;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.next-steps h3 {
    font-size: 1.8rem;
    color: #2C5F2D;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-box .step-num {
    background: #2C5F2D;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.2rem;
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.selected-service-box {
    margin-top: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #2C5F2D;
}

.selected-service-box h4 {
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.service-note {
    color: #666;
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.while-waiting {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.waiting-content h2 {
    font-size: 2.5rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 1rem;
}

.waiting-content > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.waiting-grid {
    display: flex;
    gap: 2rem;
}

.waiting-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.waiting-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.waiting-card h3 {
    font-size: 1.3rem;
    color: #2C5F2D;
    padding: 1.5rem 1.5rem 0.5rem;
}

.waiting-card p {
    color: #666;
    padding: 0 1.5rem;
    line-height: 1.7;
}

.card-link {
    display: block;
    padding: 1.5rem;
    color: #2C5F2D;
    font-weight: 600;
}

.card-link:hover {
    text-decoration: underline;
}

.contact-box {
    padding: 4rem 5%;
    background: #2C5F2D;
}

.contact-box-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.contact-box-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.5rem;
    margin: 1.5rem 0;
}

.contact-email a {
    color: #fff;
    text-decoration: underline;
}

.contact-note {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.legal-intro {
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #2C5F2D;
    margin: 1.5rem 0 1rem;
}

.legal-section h4 {
    font-size: 1.2rem;
    color: #2C5F2D;
    margin: 1rem 0 0.5rem;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #2C5F2D;
    text-decoration: underline;
}

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

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: left;
}

.gdpr-table th,
.cookies-table th {
    background: #f9f9f9;
    color: #2C5F2D;
    font-weight: 700;
}

.gdpr-table td,
.cookies-table td {
    color: #666;
}

.warning-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .story-split,
    .why-us-split,
    .team-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

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

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

    .hero-image img,
    .story-image img,
    .why-image img,
    .team-image img {
        min-height: 300px;
    }

    .intro-offset,
    .form-row {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .portfolio-item,
    .additional-item,
    .number-item,
    .transport-item,
    .waiting-card {
        flex: 1 1 100%;
    }

    .footer-content,
    .waiting-grid,
    .transport-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
