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

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

.ad-disclosure {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #34495e;
}

.hero-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

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

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

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

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview {
    background-color: #f8f9fa;
}

.service-row {
    display: flex;
    min-height: 500px;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
}

.service-row:nth-child(even) .service-content-left,
.service-row:nth-child(even) .service-content-right {
    background-color: #ecf0f1;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

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

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

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

.booking-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

#selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 28px;
    font-size: 18px;
    font-weight: 600;
    color: #27ae60;
    text-align: center;
    display: none;
}

#selected-service-display.active {
    display: block;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.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 select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 18px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

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

.trust-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.cta-final {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

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

.cta-final h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.cta-final p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #ecf0f1;
}

.main-footer {
    background-color: #34495e;
    color: #ecf0f1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    background-color: #2c3e50;
    padding: 24px 40px;
    text-align: center;
}

.footer-disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    background-color: #1c2833;
    padding: 20px 40px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 28px 40px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #34495e;
}

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

.cookie-btn {
    padding: 12px 32px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    background-color: #34495e;
    padding: 80px 40px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-content {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.about-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.approach-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

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

.philosophy-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

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

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.values-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.cta-about {
    padding: 80px 40px;
    background-color: #3498db;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #ecf0f1;
}

.services-detail {
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    min-height: 550px;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

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

.service-detail-card:nth-child(even) .service-detail-content {
    background-color: #ecf0f1;
}

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #34495e;
}

.booking-info {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

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

.booking-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.contact-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-caption {
    font-size: 14px;
    color: #7f8c8d;
    padding: 16px;
    background-color: #ecf0f1;
    text-align: center;
}

.contact-additional {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.faq-item {
    background-color: #ffffff;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-cta {
    padding: 80px 40px;
    background-color: #27ae60;
    text-align: center;
}

.contact-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #e8f5e9;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 600px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 48px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-info {
    background-color: #e3f2fd;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-info ul {
    padding-left: 24px;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #34495e;
}

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

.legal-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.legal-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #34495e;
}

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

.legal-content a:hover {
    color: #2980b9;
}

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

.cookie-table thead {
    background-color: #ecf0f1;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #bdc3c7;
    font-size: 15px;
}

.cookie-table th {
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 768px) {
    .hero-split,
    .service-row,
    .about-split,
    .philosophy-content,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

    .service-row:nth-child(even),
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-content,
    .service-content-left,
    .service-content-right,
    .service-detail-content {
        padding: 40px 24px;
    }

    .nav-links {
        gap: 16px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}