* {
    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;
}

.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    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: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: #f8f9fa;
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.split-intro {
    display: flex;
    min-height: 70vh;
}

.split-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
}

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

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.services-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

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

.service-split {
    display: flex;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    background: #f8f9fa;
}

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

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
    display: block;
}

.service-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ecf0f1;
}

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

.select-service {
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.booking-split {
    display: flex;
    min-height: 80vh;
}

.booking-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.booking-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: #ffffff;
}

.booking-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-form-container > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #7f8c8d;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #dcdde1;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.values-split {
    display: flex;
    min-height: 70vh;
}

.values-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: #ffffff;
}

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

.values-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.link-secondary {
    display: inline-block;
    margin-top: 1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-secondary:hover {
    color: #2980b9;
}

.values-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(52, 73, 94, 0.5);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: #ffffff;
}

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

.page-hero-content p {
    font-size: 1.5rem;
    color: #7f8c8d;
}

.page-hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-content {
    display: flex;
    min-height: 65vh;
}

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

.philosophy-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.philosophy-content {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-content > h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.philosophy-split {
    display: flex;
    margin-bottom: 3rem;
}

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

.philosophy-point {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    background: #f8f9fa;
}

.philosophy-point h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-point p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.philosophy-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.commitment-split {
    display: flex;
    min-height: 70vh;
}

.commitment-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.commitment-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: #ffffff;
}

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

.commitment-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.cta-secondary {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.services-detail-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-detail-split {
    display: flex;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5rem;
    background: #f8f9fa;
}

.service-category {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #3498db;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-includes {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #3498db;
}

.service-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: #5a6c7d;
    position: relative;
}

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

.service-detail-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
    display: block;
}

.service-detail-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ecf0f1;
}

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

.booking-cta-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.booking-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.contact-split-section {
    display: flex;
    min-height: 80vh;
}

.contact-info {
    flex: 1.2;
    padding: 4rem 6rem;
    background: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-additional {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-additional h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-additional p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ecf0f1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.location-context {
    padding: 4rem 6rem;
    background: #f8f9fa;
}

.location-context h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.location-split {
    display: flex;
    gap: 3rem;
}

.location-text {
    flex: 1;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.location-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 8px;
}

.thanks-section {
    display: flex;
    min-height: 80vh;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: #ffffff;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
}

.thanks-details {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-details ul {
    list-style: none;
    padding-left: 0;
}

.thanks-details ul li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    position: relative;
    line-height: 1.6;
}

.thanks-details ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.thanks-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-updated {
    font-size: 0.95rem;
    color: #95a5a6;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 0.6rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

@media (max-width: 968px) {
    .hero-split,
    .split-intro,
    .split-content,
    .service-split,
    .booking-split,
    .values-split,
    .commitment-split,
    .philosophy-split,
    .service-detail-split,
    .contact-split-section,
    .thanks-section,
    .page-hero-split,
    .location-split {
        flex-direction: column;
    }

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

    .hero-content,
    .split-text,
    .service-content,
    .booking-form-container,
    .values-text,
    .commitment-text,
    .philosophy-point,
    .service-detail-content,
    .contact-info,
    .thanks-content,
    .page-hero-content {
        padding: 3rem 2rem;
    }

    .hero-visual,
    .split-visual,
    .service-image,
    .booking-visual,
    .values-visual,
    .philosophy-visual,
    .service-detail-image,
    .contact-visual,
    .thanks-visual,
    .page-hero-visual,
    .location-visual {
        min-height: 400px;
    }

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

    .split-text h2,
    .values-text h2,
    .commitment-text h2,
    .service-detail-content h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-context {
        padding: 3rem 2rem;
    }
}