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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba8;
    --accent-color: #28a745;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

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

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
}

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

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

.center {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

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

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

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.split-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.problem-section {
    padding: 80px 20px;
    background: var(--white);
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.insight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

.trust-builder {
    padding: 80px 20px;
    background: var(--light-bg);
}

.method-section {
    padding: 80px 20px;
    background: var(--white);
}

.method-step {
    margin-bottom: 2rem;
}

.method-step h3 {
    margin-bottom: 0.5rem;
}

.testimonials {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.testimonials h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
}

.services-preview {
    padding: 80px 20px;
    background: var(--light-bg);
}

.service-preview-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.service-preview-item h3 {
    margin-bottom: 0.5rem;
}

.service-preview-item p {
    margin-bottom: 1rem;
    color: #555;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.results-section {
    padding: 80px 20px;
    background: var(--white);
}

.results-grid {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.result-card {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
}

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

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

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

.form-privacy {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-cta,
.btn-cta-large,
.btn-inline,
.btn-submit,
.btn-sticky {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-cta {
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: #218838;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-large {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 18px 40px;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-inline {
    background: var(--primary-color);
    color: var(--white);
    margin-top: 1rem;
}

.btn-inline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    width: 100%;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #218838;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-sticky:hover {
    background: #218838;
    color: var(--white);
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero {
    padding: 80px 20px;
    background: var(--light-bg);
}

.story-section {
    padding: 80px 20px;
    background: var(--white);
}

.values-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.value-item {
    margin-bottom: 2rem;
}

.expertise-section {
    padding: 80px 20px;
    background: var(--white);
}

.expertise-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.expertise-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.approach-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.approach-list {
    list-style: none;
    margin: 1.5rem 0;
}

.approach-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.services-detailed {
    padding: 60px 20px;
}

.service-card-full {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 4px;
}

.service-duration {
    font-weight: 500;
    color: #666;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.guarantee-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.contact-section {
    padding: 80px 20px;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.map-placeholder {
    background: var(--light-bg);
    padding: 60px 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
}

.contact-cta {
    padding: 80px 20px;
    background: var(--light-bg);
}

.thanks-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.selected-service {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem 0;
}

.step-grid {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

.legal-page {
    padding: 60px 20px;
    background: var(--white);
}

.legal-page h1 {
    margin-bottom: 1rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

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

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

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .service-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .btn-sticky {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}