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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

.logo:hover {
    color: #2980b9;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
}

.nav-links a:hover {
    color: #1a5f7a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.7rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #1a5f7a;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
}

.cta-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section,
.story-section,
.content-section {
    padding: 5rem 2rem;
}

.intro-section h2,
.story-section h2,
.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
    line-height: 1.3;
}

.intro-section p,
.story-section p,
.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.visual-break,
.image-section {
    width: 100%;
    overflow: hidden;
}

.visual-break img,
.image-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.services-preview,
.services-detailed {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.services-preview h2,
.services-detailed h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.service-info {
    padding: 2rem;
}

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

.service-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 3rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: left;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1.2rem;
    color: #555;
}

.service-features {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #555;
}

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

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

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

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
}

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

.trust-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.testimonials-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #1a5f7a;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #1a5f7a;
}

.final-cta,
.cta-section {
    padding: 6rem 2rem;
    background-color: #1a5f7a;
    text-align: center;
}

.final-cta h2,
.cta-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta p,
.cta-section p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.final-cta .cta-secondary,
.cta-section .cta-primary {
    background-color: #ffffff;
    color: #1a5f7a;
}

.final-cta .cta-secondary:hover {
    background-color: #ecf0f1;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-section p,
.footer-section li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

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

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

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

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

.page-hero {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #555;
}

.content-section.alt-bg {
    background-color: #f8f9fa;
}

.about-content h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
}

.contact-section {
    padding: 5rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-info-block h2:first-child {
    margin-top: 0;
}

.contact-detail {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5f7a;
    border-radius: 4px;
    color: #555;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.visual-caption {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.additional-contact-info {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.additional-contact-info h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.additional-contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 5rem 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
}

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

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
}

.thanks-section h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-message {
    font-size: 1.3rem;
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-left: 4px solid #1a5f7a;
    border-radius: 4px;
    font-weight: 600;
    color: #1a5f7a;
}

.helpful-links {
    list-style: disc;
    margin-left: 2rem;
    margin-top: 1rem;
}

.helpful-links li {
    margin-bottom: 0.5rem;
}

.helpful-links a {
    color: #1a5f7a;
    text-decoration: underline;
}

.helpful-links a:hover {
    color: #2980b9;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    list-style: decimal;
    margin-left: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
}

.thanks-cta {
    text-align: center;
    margin-top: 3rem;
}

.legal-page {
    padding: 5rem 2rem;
}

.legal-page h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

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

.legal-page p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page a {
    color: #1a5f7a;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

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

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

    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }
}