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

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

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f6f;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #2d5f6f;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 3rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: #e8f4f8;
    position: relative;
}

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

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

.cta-primary:hover {
    background-color: #1e4a56;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5f6f;
    border: 2px solid #2d5f6f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2d5f6f;
    color: #ffffff;
}

.intro-section {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.split-feature {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.feature-image-left {
    flex: 1;
    background-color: #d4e6ed;
}

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

.feature-text-right {
    flex: 1;
    padding: 4rem 5%;
}

.feature-text-right h3 {
    font-size: 2rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

.feature-text-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 2.5rem;
    color: #2d5f6f;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h4 {
    font-size: 1.4rem;
    color: #2d5f6f;
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
    font-size: 0.95rem;
}

.price {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f6f;
}

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

.split-testimonial {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    align-items: center;
}

.testimonial-text-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: #e8f4f8;
}

.testimonial-text-left blockquote {
    font-size: 1.2rem;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-text-left cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #2d5f6f;
}

.testimonial-image-right {
    flex: 1;
    background-color: #d4e6ed;
}

.approach-section {
    padding: 5rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 2.3rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.form-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.2rem;
    color: #2d5f6f;
    margin-bottom: 1rem;
}

.form-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5f6f;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d5f6f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #ecf0f1;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1.5rem;
}

.footer-columns {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col 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 5%;
    box-shadow: 0 -4px 12px 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;
}

.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: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2d5f6f;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

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

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

.page-hero-content p {
    font-size: 1.2rem;
    color: #e8f4f8;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    margin: 4rem 0;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8f4f8;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem 5%;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5f6f;
    margin: 1.5rem 0;
}

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

.booking-cta-section {
    padding: 5rem 5%;
    background-color: #2d5f6f;
    text-align: center;
}

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

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

.about-hero {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero-text h1 {
    font-size: 3rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

.about-hero-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-story {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.story-container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.2rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #e8f4f8;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.team-section {
    padding: 5rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 2.3rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.commitment-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.commitment-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.commitment-image {
    flex: 1;
    background-color: #e8f4f8;
}

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

.commitment-text {
    flex: 1;
    padding: 3rem 5%;
}

.commitment-text h2 {
    font-size: 2rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

.commitment-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-hero {
    padding: 4rem 5%;
    background-color: #2d5f6f;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.2rem;
    color: #e8f4f8;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 5rem 5%;
}

.contact-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    color: #2d5f6f;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e8f4f8;
}

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

.contact-additional {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

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

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

.thanks-section {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.confirmation-details p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.confirmation-details ul {
    list-style-position: inside;
    color: #555;
}

.confirmation-details li {
    margin-bottom: 0.7rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #2d5f6f;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-page {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #2d5f6f;
    margin-bottom: 1.5rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    color: #2d5f6f;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content em {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-feature,
    .split-testimonial,
    .form-split,
    .story-container,
    .commitment-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-left h1,
    .about-hero-text h1 {
        font-size: 2.5rem;
    }

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

    .nav-menu {
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        order: 0;
        width: 100%;
        margin-bottom: 1rem;
        margin-top: 0;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

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

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

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

    .hero-left h1 {
        font-size: 2rem;
    }

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