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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #777;
    padding: 0.4rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-left-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 8%;
    background-color: #faf8f9;
}

.hero-text-content {
    max-width: 520px;
}

.hero-text-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a5a5;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #c79090;
    transform: translateY(-2px);
}

.intro-narrow {
    padding: 5rem 10%;
    background-color: #fff;
}

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

.narrow-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #2c3e50;
}

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

.services-alternating {
    padding: 5rem 8%;
    background-color: #fafafa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #666;
}

.service-card-left,
.service-card-right {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
}

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

.form-container-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-left-info {
    flex: 1;
}

.form-left-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-left-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.selected-service-display {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 2rem;
}

.selected-label {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.selected-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.selected-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4a5a5;
}

.form-right-form {
    flex: 1;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #d4a5a5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.testimonials-cards {
    padding: 5rem 8%;
    background-color: #faf8f9;
    text-align: center;
}

.testimonials-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

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

.footer-layout {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 8% 1rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #d4a5a5;
}

.footer-disclaimer {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #d4a5a5;
    color: #fff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 8%;
    background-color: #faf8f9;
}

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

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

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

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

.about-story-narrow {
    padding: 5rem 10%;
    background-color: #fff;
}

.about-values-split {
    padding: 3rem 8%;
    background-color: #fafafa;
}

.value-block-left,
.value-block-right {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.value-content {
    flex: 1;
    padding: 2rem;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.value-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.value-image {
    flex: 1;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-team-section {
    padding: 5rem 10%;
    background-color: #fff;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-header p {
    font-size: 1.1rem;
    color: #666;
}

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

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

.cta-section-centered {
    padding: 5rem 8%;
    background-color: #faf8f9;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-section-centered p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.services-page-hero {
    padding: 5rem 8%;
    background-color: #faf8f9;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.services-detailed {
    padding: 3rem 8%;
    background-color: #fff;
}

.service-detail-block-left,
.service-detail-block-right {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.service-detail-image {
    flex: 1;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

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

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

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #777;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4a5a5;
}

.contact-hero {
    padding: 5rem 8%;
    background-color: #faf8f9;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #666;
}

.contact-content-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 8%;
    background-color: #fff;
}

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

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

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

.contact-block p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.opening-hours {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

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

.time {
    color: #666;
}

.contact-right-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-text {
    text-align: center;
}

.map-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-cta-section {
    padding: 4rem 8%;
    background-color: #faf8f9;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 8%;
    background-color: #faf8f9;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-service-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-service-detail p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.8rem;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #d4a5a5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-content {
    padding: 5rem 10%;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

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

.legal-container li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.legal-container a {
    color: #d4a5a5;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #c79090;
}

.no-link {
    color: #555;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

    .service-card-left,
    .service-card-right,
    .value-block-left,
    .value-block-right,
    .service-detail-block-left,
    .service-detail-block-right {
        flex-direction: column;
    }

    .form-container-split,
    .contact-content-split {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

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