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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.ad-notice {
    background-color: #f39c12;
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--light-bg);
}

.hero-content-left {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-image-right {
    flex: 1;
    background-color: #95a5a6;
}

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

.intro-split-reverse {
    display: flex;
    min-height: 500px;
}

.intro-image-left {
    flex: 1;
    background-color: #95a5a6;
}

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

.intro-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.intro-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-content-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-section {
    padding: 80px 40px;
    background-color: var(--white);
}

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

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

.section-header-center p {
    font-size: 18px;
    color: var(--secondary-color);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 400px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.service-details {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

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

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.select-service-btn {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
    text-decoration: none;
}

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

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

.form-intro {
    flex: 1;
    padding-right: 40px;
}

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

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
}

.form-wrapper {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-split {
    display: flex;
    min-height: 500px;
    background-color: var(--white);
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial-block {
    margin-bottom: 35px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.trust-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: none;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #34495e;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    z-index: 1000;
    display: none;
}

.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-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--white);
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    opacity: 0.8;
}

.page-header-split {
    padding: 100px 40px;
    background-color: var(--light-bg);
    text-align: center;
}

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

.header-content p {
    font-size: 20px;
    color: var(--secondary-color);
}

.about-story-split {
    display: flex;
    min-height: 500px;
}

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

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

.story-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    min-height: 500px;
    background-color: var(--light-bg);
}

.values-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.values-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.process-section {
    padding: 80px 40px;
    background-color: var(--white);
}

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

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    padding: 30px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

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

.process-step p {
    font-size: 16px;
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 500px;
    background-color: var(--white);
}

.team-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.team-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detail-section {
    padding: 60px 40px;
    background-color: var(--white);
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    min-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

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

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

.cta-section-centered {
    padding: 80px 40px;
    background-color: var(--light-bg);
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--secondary-color);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
}

.contact-info-split {
    display: flex;
    min-height: 500px;
    background-color: var(--white);
}

.contact-details {
    flex: 1;
    padding: 80px 60px;
}

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

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary-color);
}

.contact-map {
    flex: 1;
    background-color: #95a5a6;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info {
    padding: 80px 40px;
    background-color: var(--light-bg);
    max-width: 900px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 120px 40px;
    background-color: var(--light-bg);
    min-height: 500px;
}

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

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.selected-service-info {
    background-color: var(--white);
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.selected-service-info p {
    margin: 0;
    font-size: 17px;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
    text-decoration: none;
}

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: var(--white);
}

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .hero-split,
    .intro-split-reverse,
    .trust-split,
    .about-story-split,
    .values-split,
    .team-split,
    .service-card-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

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

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

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

    .nav-links {
        gap: 20px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1,
    .header-content h1 {
        font-size: 36px;
    }

    .intro-content-right h2,
    .trust-content h2,
    .story-content h2,
    .values-content h2,
    .team-content h2 {
        font-size: 28px;
    }

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

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content-left,
    .intro-content-right,
    .trust-content,
    .story-content,
    .values-content,
    .team-content,
    .service-details,
    .service-detail-content,
    .contact-details {
        padding: 40px 30px;
    }
}