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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-disclosure {
    background: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b7355;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    background: #8b7355;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #725d46;
}

.intro-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.split-reverse {
    display: flex;
    background: #fff;
}

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

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.services-reveal {
    padding: 100px 20px;
    background: #f8f8f8;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px;
    color: #666;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    padding: 20px 24px 8px;
}

.select-service {
    margin: 16px 24px 24px;
    padding: 14px 24px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #725d46;
}

.form-section {
    padding: 100px 20px;
    background: #fff;
}

.form-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 18px;
    color: #666;
}

.form-right {
    flex: 1;
}

.selected-service-display {
    background: #f0ebe5;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.service-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: #8b7355;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #725d46;
}

.trust-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #8b7355;
    font-weight: 600;
    font-style: normal;
}

.process-section {
    padding: 100px 20px;
    background: #fff;
}

.process-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.step {
    margin-bottom: 40px;
}

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #8b7355;
    background: #f0ebe5;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #666;
}

.process-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.main-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8b7355;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background: #3a3a3a;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

.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;
    font-size: 14px;
    color: #555;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #8b7355;
    color: #fff;
}

.btn-accept:hover {
    background: #725d46;
}

.btn-reject {
    background: #e0e0e0;
    color: #2c2c2c;
}

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

.page-hero {
    background: linear-gradient(135deg, #8b7355 0%, #a89885 100%);
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 20px;
    color: #f0ebe5;
}

.about-intro {
    padding: 80px 20px;
    background: #fff;
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

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

.values-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-section,
.approach-section {
    padding: 80px 20px;
    background: #fff;
}

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

.team-content h2,
.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-content p,
.approach-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.workshop-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.workshop-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.workshop-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

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

.workshop-text {
    flex: 1;
}

.workshop-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.workshop-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.services-detailed {
    padding: 80px 20px;
    background: #fff;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    color: #666;
    padding: 10px 0 10px 28px;
    position: relative;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
}

.cta-section {
    padding: 100px 20px;
    background: #f8f8f8;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: #8b7355;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #725d46;
}

.contact-section {
    padding: 80px 20px;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    height: 500px;
}

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

.location-note {
    padding: 80px 20px;
    background: #f8f8f8;
}

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

.note-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.note-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 100px 20px;
    background: #fff;
}

.thanks-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #8b7355;
    margin-bottom: 32px;
}

.confirmation-details {
    background: #f0ebe5;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.confirmation-details p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #8b7355;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.step-text p {
    font-size: 15px;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #8b7355;
    color: #fff;
}

.btn-primary:hover {
    background: #725d46;
}

.btn-secondary {
    background: #e0e0e0;
    color: #2c2c2c;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.thanks-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    height: 500px;
}

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

.legal-page {
    padding: 60px 20px;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.gdpr-table th,
.cookies-table th {
    background: #f0ebe5;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .form-container,
    .process-split,
    .about-split,
    .workshop-split,
    .service-detail-split,
    .contact-container,
    .thanks-container {
        flex-direction: column;
    }

    .hero-left,
    .split-content {
        padding: 40px 30px;
    }

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

    .nav-menu {
        gap: 20px;
    }

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

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

    .footer-container {
        flex-direction: column;
    }
}
