* {
    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-color: #ffffff;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    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: 600;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #4a6b7c;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background-color: #4a6b7c;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d5a6c;
}

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

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.hero-image {
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a6b7c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #3d5a6c;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4a6b7c;
    text-decoration: none;
    border: 2px solid #4a6b7c;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #4a6b7c;
    color: #ffffff;
}

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

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-content,
.split-image {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.split-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.services-showcase {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 24px;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #4a6b7c;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #4a6b7c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #3d5a6c;
}

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

.form-container {
    padding: 40px;
}

.booking-form {
    max-width: 500px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 14px 28px;
    background-color: #4a6b7c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3d5a6c;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
}

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

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.5;
}

.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(44, 62, 80, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 48px;
    text-align: center;
}

.hero-overlay p {
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    max-width: 700px;
    margin-top: 16px;
}

.about-intro,
.philosophy-section,
.team-section,
.commitment-section {
    padding: 80px 0;
}

.philosophy-section {
    background-color: #f8f9fa;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.philosophy-card,
.commitment-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

.philosophy-card h3,
.commitment-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.philosophy-card p,
.commitment-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.centered-text {
    text-align: center;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #5a6c7d;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.service-detail-split {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 400px;
}

.service-detail-content {
    flex: 1;
    padding: 20px 0;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-duration {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 16px;
}

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

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #5a6c7d;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a6b7c;
    font-weight: bold;
    font-size: 20px;
}

.service-price {
    font-size: 30px;
    font-weight: 600;
    color: #4a6b7c;
    margin: 20px 0;
}

.btn-service-select {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a6b7c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-service-select:hover {
    background-color: #3d5a6c;
}

.booking-info {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.booking-info p {
    font-size: 17px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-intro {
    font-size: 17px;
    color: #5a6c7d;
    max-width: 700px;
    margin-bottom: 50px;
}

.contact-split {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

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

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

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

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

.contact-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.additional-info {
    margin-top: 60px;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.info-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

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

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-page {
    padding: 80px 0;
    min-height: 600px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-details p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.step-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4a6b7c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 16px;
}

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

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

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

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.legal-content a {
    color: #4a6b7c;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .split-container,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .section-title {
        font-size: 32px;
    }

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

    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 15px;
    }

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