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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

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

.intro-section {
    padding: 100px 0;
}

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

.content-half {
    flex: 1;
}

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

.content-half p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    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(-5px);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 25px;
}

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

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

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

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

.why-section {
    padding: 100px 0;
}

.split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.image-column {
    flex: 1;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.text-column {
    flex: 1;
}

.text-column h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
}

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

.booking-section {
    padding: 100px 0;
    background-color: #ecf0f1;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.8;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    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;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

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

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

.philosophy-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.philosophy-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.philosophy-card p {
    font-size: 15px;
    color: #5a6c7d;
}

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

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

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

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

.values-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #5a6c7d;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
}

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

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

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

.service-block {
    margin-bottom: 80px;
}

.service-content-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-content-layout.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #5a6c7d;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

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

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

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

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

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

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

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

.visit-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.visit-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
}

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

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.thanks-section {
    padding: 100px 0;
}

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

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

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #5a6c7d;
}

.confirmation-details {
    margin-bottom: 60px;
}

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

.step-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3498db;
}

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

.service-reference {
    margin-bottom: 50px;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    color: #2c3e50;
}

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

.next-actions h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-actions > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

.contact-reminder {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-reminder p {
    font-size: 15px;
    color: #5a6c7d;
}

.legal-content {
    padding: 80px 0;
}

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

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

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #34495e;
}

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

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

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

    .hero-left {
        padding: 50px 30px;
    }

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

    .hero-right {
        min-height: 300px;
    }

    .split-layout,
    .split-reverse,
    .service-content-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-content-layout.reverse {
        flex-direction: column;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}