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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a4d6f;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #1a4d6f;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a4d6f;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a4d6f;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 560px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a4d6f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0d3a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 111, 0.3);
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #1a4d6f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    color: #1a4d6f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-height: 500px;
}

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

.service-info {
    flex: 1;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 2rem;
    color: #1a4d6f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.service-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a4d6f;
    font-weight: 700;
}

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

.select-service {
    padding: 0.9rem 2rem;
    background-color: #1a4d6f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #0d3a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 111, 0.3);
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.booking-section {
    padding: 6rem 2rem;
    background-color: #1a4d6f;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.booking-content {
    flex: 1;
}

.booking-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-content p {
    font-size: 1.1rem;
    color: #e0e7ed;
}

.booking-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form input,
.booking-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    color: #2c3e50;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: 3px solid #5a9cc7;
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #1a4d6f;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.testimonials-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    color: #1a4d6f;
    margin-bottom: 2rem;
    font-weight: 700;
}

.testimonial-item {
    margin-bottom: 2rem;
}

.testimonial-item p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-item cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f0f4f7;
    text-align: center;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 2;
    text-decoration: none;
    display: block;
}

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

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

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

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

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

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

.cookie-content a {
    color: #5a9cc7;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

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

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

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

.page-hero {
    padding: 5rem 2rem 3rem;
    background-color: #1a4d6f;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.about-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a4d6f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a4d6f;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.value-card h3 {
    font-size: 1.5rem;
    color: #1a4d6f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.story-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

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

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #1a4d6f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.team-approach h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a4d6f;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.approach-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-height: 600px;
}

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

.service-detail-content {
    flex: 1;
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a4d6f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-description p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-details-list {
    margin: 1.5rem 0;
}

.service-details-list h3 {
    font-size: 1.3rem;
    color: #1a4d6f;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-details-list ul {
    list-style: none;
}

.service-details-list ul li {
    padding: 0.4rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.service-details-list ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a4d6f;
    font-weight: 700;
}

.service-info-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.service-info-box p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #5a6c7d;
}

.service-info-box strong {
    color: #1a4d6f;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.booking-cta {
    padding: 5rem 2rem;
    background-color: #1a4d6f;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-cta p {
    font-size: 1.2rem;
    color: #e0e7ed;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a4d6f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.contact-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a4d6f;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a4d6f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #1a4d6f;
}

.contact-note h3 {
    font-size: 1.2rem;
    color: #1a4d6f;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-note p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-map {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.visit-info h2 {
    font-size: 2.5rem;
    color: #1a4d6f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.visit-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-container {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a4d6f;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 2rem;
    font-weight: 600;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: #1a4d6f;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #1a4d6f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0d3a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 111, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1a4d6f;
    border: 2px solid #1a4d6f;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a4d6f;
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a4d6f;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #1a4d6f;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.legal-content ul li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #1a4d6f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0d3a52;
}

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f8f9fa;
    color: #1a4d6f;
    font-weight: 600;
}

.cookies-table td {
    color: #5a6c7d;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .testimonials-split,
    .about-split,
    .story-split,
    .service-detail-card,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .service-info,
    .testimonial-content,
    .about-text,
    .story-text,
    .service-detail-content,
    .contact-info,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: space-around;
    }
}

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

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

    .services-header h2,
    .values-section h2,
    .team-approach h2 {
        font-size: 2rem;
    }

    .main-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}