* {
    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: #2c3e50;
    background: #ffffff;
}

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

.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    margin-right: 30px;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    margin-right: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-text {
    max-width: 540px;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #2980b9;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #3498db;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.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: #1a252f;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
}

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

.values-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
}

.services-preview {
    padding: 100px 0;
    background: #ecf0f1;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a252f;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px;
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    padding: 0 24px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.cta-center {
    text-align: center;
}

.testimonial-split {
    display: flex;
    min-height: 400px;
}

.testimonial-content {
    background: #34495e;
    color: #ffffff;
}

.testimonial-content blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #bdc3c7;
}

.cta-section {
    padding: 100px 0;
    background: #3498db;
    color: #ffffff;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

.cta-section .cta-primary {
    background: #ffffff;
    color: #3498db;
}

.cta-section .cta-primary:hover {
    background: #ecf0f1;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #34495e;
}

.page-hero {
    padding: 80px 0 60px;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

.page-hero p {
    font-size: 18px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

.split-layout {
    display: flex;
    gap: 0;
    min-height: 500px;
}

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

.philosophy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
    min-width: 260px;
    padding: 28px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    color: #546e7a;
}

.team-approach {
    padding: 80px 0;
}

.values-detailed {
    padding: 80px 0;
    background: #ecf0f1;
}

.values-detailed h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.value-block {
    margin-bottom: 40px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-block p {
    font-size: 17px;
    color: #546e7a;
}

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

.service-detail {
    display: flex;
    margin-bottom: 60px;
    min-height: 450px;
}

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

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

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

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

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 450px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

.booking-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.booking-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
    text-align: center;
}

.selected-service-info {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
    padding: 16px;
    background: #ecf0f1;
    border-radius: 6px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 15px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.service-form button[type="submit"] {
    margin-top: 10px;
}

.service-form button[type="submit"]:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.contact-content {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 0;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: #f8f9fa;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #ffffff;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    color: #546e7a;
}

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-additional {
    padding: 80px 0;
    background: #ffffff;
}

.contact-additional h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-additional > p {
    text-align: center;
    font-size: 17px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-options {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.contact-option {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-option h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-option p {
    font-size: 16px;
    color: #546e7a;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 40px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #546e7a;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 32px;
    background: #ecf0f1;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-next-steps ol {
    padding-left: 24px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.legal-page {
    padding: 60px 0;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .testimonial-split,
    .split-layout,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 30px;
    }

    .hero-text h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .split-content h2,
    .values-section h2,
    .services-preview h2 {
        font-size: 32px;
    }

    .nav-wrapper {
        gap: 20px;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

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

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}