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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 3px;
    margin-left: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: #d5d8dc;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-section {
    padding: 100px 0;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    position: relative;
    background-color: #d5d8dc;
}

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

.services-intro {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-grid {
    padding: 60px 0 100px;
    background-color: var(--bg-light);
}

.service-card-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    position: relative;
    background-color: #d5d8dc;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-select:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.form-wrapper-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.process-list {
    list-style: none;
    padding: 0;
}

.process-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.process-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.btn-submit {
    padding: 14px 32px;
    font-size: 16px;
    margin-top: 10px;
}

.trust-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.link-arrow {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.link-arrow:after {
    content: " →";
}

.link-arrow:hover {
    transform: translateX(5px);
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

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

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.disclaimer-footer {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 15px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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;
    margin: 0;
    font-size: 14px;
}

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

.page-hero {
    padding: 80px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-hero .lead {
    font-size: 20px;
    color: var(--text-light);
}

.about-content {
    padding: 80px 0;
}

.philosophy-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-section {
    padding: 80px 0;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-section-alt {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bdc3c7;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1;
    position: relative;
    background-color: #d5d8dc;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.contact-content {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-image-block {
    flex: 1;
    position: relative;
    background-color: #d5d8dc;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.location-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.location-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 0;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    flex: 0 0 calc(50% - 20px);
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-display h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.selected-service-display p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

@media (max-width: 968px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content,
    .split-content,
    .service-card-split,
    .service-detail-split,
    .form-wrapper-split,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-text h1 {
        font-size: 36px;
    }

    .text-block h2,
    .contact-info-block h2 {
        font-size: 28px;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 32px;
    }

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

    .faq-item {
        flex: 0 0 100%;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}