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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a9fc7;
    --accent-color: #e8972c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

.ad-disclosure {
    background-color: #fef3e0;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid #f5c842;
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.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: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

.btn-primary,
.btn-secondary,
.btn-submit,
.cta-button {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-primary:hover,
.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 550px;
    align-items: stretch;
}

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

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

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

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

.intro-section,
.problem-section,
.trust-section {
    padding: 80px 20px;
}

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

.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: 18px;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.image-block {
    flex: 1;
    background-color: #e9ecef;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.insight-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.centered-content p {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

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

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

.testimonial-card {
    flex: 1;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

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

.services-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-split {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 400px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 50px;
}

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

.service-info p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.select-service {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-section {
    padding: 80px 20px;
    background-color: white;
}

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

.form-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    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(--secondary-color);
}

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

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

.final-cta p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.disclaimer-section {
    padding: 40px 20px;
    background-color: #f0f0f0;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

.value-card {
    flex: 1;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-dark);
}

.partnership-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

.partnership-section p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.cta-section .cta-button:hover {
    background-color: #d88520;
}

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

.service-item {
    margin-bottom: 80px;
}

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

.service-info h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-info ul {
    list-style: none;
    padding-left: 0;
}

.service-info ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.price-display {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.consultation-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.consultation-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.contact-info {
    flex: 1;
}

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

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

.info-block p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
}

.info-block .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

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

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form-container > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #e9ecef;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

#service-confirmation {
    font-weight: 600;
    color: var(--secondary-color);
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

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

.step-card p {
    font-size: 16px;
    color: var(--text-dark);
}

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

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

.legal-content .container {
    max-width: 900px;
}

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

.legal-content .last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-info {
        padding: 30px;
    }

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

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

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

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

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

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

    .contact-form-container {
        padding: 30px;
    }
}