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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-dark: #34495e;
    --border-color: #e1e8ed;
    --white: #ffffff;
    --success: #27ae60;
}

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

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

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

.hero-visual {
    flex: 1;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

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

.trust-strip {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 24px;
    color: var(--success);
    font-weight: 700;
}

.trust-item p {
    font-weight: 600;
    color: var(--text-dark);
}

section {
    padding: 80px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h2,
.content-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-left p,
.content-right p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-right img,
.content-left img {
    width: 100%;
    border-radius: 8px;
}

.problem-section {
    background: var(--bg-light);
}

.services-preview {
    background: var(--white);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 24px);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonial-section {
    background: var(--white);
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 24px;
    margin-bottom: 32px;
}

blockquote p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.how-it-works {
    background: var(--bg-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.steps-layout {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

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

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

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

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

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 36px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.why-us-section {
    background: var(--bg-light);
}

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

.benefit-item {
    margin-bottom: 32px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.main-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px 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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

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

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

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

.story-section,
.values-section,
.team-section,
.mission-section,
.services-intro,
.services-detailed,
.contact-section,
.faq-section {
    padding: 80px 0;
}

.values-grid,
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card,
.faq-item {
    flex: 0 0 calc(50% - 16px);
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

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

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

.mission-section {
    background: var(--bg-light);
}

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

.mission-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

.cta-section {
    background: var(--accent-color);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-primary {
    background: var(--white);
    color: var(--accent-color);
}

.cta-section .cta-primary:hover {
    background: var(--bg-light);
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

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

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

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-dark);
}

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

.service-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.price-label {
    font-size: 18px;
    color: var(--text-light);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-info {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 32px;
}

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

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

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.map-placeholder {
    margin-top: 32px;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

.faq-section {
    background: var(--bg-light);
}

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

.legal-content {
    padding: 60px 0;
}

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

.legal-text h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

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

.legal-text ul {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.legal-text a:hover {
    text-decoration: underline;
}

.thanks-hero {
    background: var(--bg-light);
    padding: 120px 0;
}

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

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

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

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.selected-service-info {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps {
    padding: 80px 0;
}

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

.thanks-info {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 16px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

    .hero-text p {
        font-size: 18px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        padding: 30px 20px;
    }

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

    .steps-layout {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

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

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

    .content-left h2,
    .content-right h2 {
        font-size: 32px;
    }
}
