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

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

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

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

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-main {
    display: flex;
    gap: 25px;
}

.nav-main a {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 0;
}

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

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

.hero-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #c0392b;
    text-decoration: none;
}

.intro-alternating {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.content-block {
    flex: 1;
}

.content-block.left {
    padding: 80px 60px;
    background-color: #ffffff;
}

.content-block.right {
    background-color: #f8f9fa;
}

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

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

.image-wrapper {
    height: 100%;
    background-color: #bdc3c7;
}

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

.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.split-left {
    flex: 1;
    background-color: #ecf0f1;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.split-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.services-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    min-width: 500px;
}

.service-image {
    flex: 0 0 300px;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-top: auto;
    margin-bottom: 15px;
}

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
}

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

.btn-book {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    align-self: flex-start;
}

.btn-book:hover {
    background-color: #2980b9;
    text-decoration: none;
}

.booking-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.booking-left {
    flex: 1;
}

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

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

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #e74c3c;
    margin-top: 30px;
}

.booking-right {
    flex: 1;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #2c3e50;
}

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

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

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

.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 80px 0;
}

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

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 14px;
}

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

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

.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;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

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

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

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

.btn-reject:hover {
    background-color: #5d6d7e;
}

.page-hero {
    position: relative;
    height: 400px;
    background-color: #34495e;
}

.hero-overlay {
    position: relative;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.hero-overlay-text h1 {
    font-size: 56px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-intro {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.content-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.content-narrow p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.team-text {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

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

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

.team-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.values-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.value-item {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.approach-alternating {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.approach-content.left {
    flex: 1;
}

.approach-text {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

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

.approach-content.right {
    flex: 1;
}

.approach-image {
    height: 100%;
    background-color: #ecf0f1;
}

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

.mission-statement {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 40px;
    margin: 80px 0;
}

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

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ecf0f1;
}

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

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

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

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
}

.cta-button:hover {
    background-color: #c0392b;
    text-decoration: none;
}

.services-intro {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 40px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.what-included {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.what-included h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.included-item {
    flex: 1;
    padding: 40px;
    background-color: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

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

.included-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

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

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

.contact-details {
    margin-top: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.response-info {
    margin-top: 40px;
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-caption {
    margin-top: 15px;
}

.map-caption p {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.location-description {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.location-description p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.thanks-hero {
    background-color: #27ae60;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 20px;
    color: #ecf0f1;
}

.thanks-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.info-container {
    display: flex;
    gap: 60px;
}

.info-block {
    flex: 2;
}

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

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

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-text {
    flex: 1;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.selected-service-info {
    flex: 1;
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

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

.selected-service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.preparation-section {
    margin: 80px 0;
}

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

.preparation-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

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

.preparation-list {
    list-style: disc;
    margin-left: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.preparation-list li {
    margin-bottom: 10px;
}

.explore-more {
    text-align: center;
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.explore-more h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.explore-more p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #7f8c8d;
}

.explore-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.explore-btn {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
}

.explore-btn:hover {
    background-color: #2980b9;
    text-decoration: none;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 10px;
}

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

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

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

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

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-right {
        align-items: flex-start;
    }

    .nav-main {
        flex-direction: column;
        gap: 10px;
    }

    .hero-split {
        flex-direction: column;
    }

    .intro-alternating,
    .philosophy-split,
    .team-split,
    .approach-alternating,
    .booking-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-card {
        flex-direction: column;
        min-width: auto;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .values-grid,
    .included-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .info-container {
        flex-direction: column;
    }

    .explore-links {
        flex-direction: column;
    }
}