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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #fed7d7;
    color: #742a2a;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: #2d3748;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a202c;
}

.intro-section {
    display: flex;
    align-items: stretch;
}

.intro-left {
    flex: 1;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-right {
    flex: 1;
    padding: 60px 50px;
    background-color: #ffffff;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a5568;
}

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

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
}

.service-card img {
    width: 100%;
    height: 200px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 20px 16px;
    color: #4a5568;
}

.link-arrow {
    display: inline-block;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px 20px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #1a202c;
}

.benefits-asymmetric {
    padding: 70px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.benefit-block {
    padding: 40px;
    border-radius: 8px;
    background-color: #edf2f7;
}

.benefit-large {
    flex: 2;
    min-width: 320px;
}

.benefit-small {
    flex: 1;
    min-width: 240px;
}

.benefit-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-section {
    background-color: #f7fafc;
    padding: 70px 20px;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2d3748;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #718096;
    font-weight: 600;
}

.form-section {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.form-content {
    flex: 1;
    padding: 60px 50px;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.form-content p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a5568;
}

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

.contact-form label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: -12px;
}

.contact-form input,
.contact-form select {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2d3748;
}

.btn-submit {
    background-color: #2d3748;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    background-color: #edf2f7;
    padding: 40px 20px;
    text-align: center;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 50px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

.cookie-banner p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner a {
    color: #90cdf4;
}

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

.btn-cookie {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #38a169;
}

.btn-cookie.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #2d3748;
}

.page-header {
    background-color: #f7fafc;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 46px;
    margin-bottom: 16px;
    color: #1a202c;
}

.page-header p {
    font-size: 19px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    align-items: center;
    padding: 70px 0;
}

.story-content {
    flex: 1;
    padding: 0 60px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.story-image {
    flex: 1;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    background-color: #f7fafc;
    padding: 70px 20px;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a202c;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-approach {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.approach-visual {
    flex: 1;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-content {
    flex: 1;
    padding: 60px 50px;
    background-color: #ffffff;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.numbers-section {
    background-color: #2d3748;
    color: #ffffff;
    padding: 70px 20px;
}

.numbers-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

.numbers-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.number-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #90cdf4;
}

.number-label {
    display: block;
    font-size: 16px;
    color: #cbd5e0;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.service-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
    gap: 0;
}

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

.service-info {
    flex: 1;
    padding: 50px 45px;
    background-color: #ffffff;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

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

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #2d3748;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-pricing {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
}

.price-note {
    font-size: 14px;
    color: #718096;
}

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-section {
    background-color: #edf2f7;
    padding: 70px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
}

.contact-info-block {
    flex: 1;
    padding: 40px 50px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a202c;
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.consultation-section {
    background-color: #f7fafc;
    padding: 70px 20px;
}

.consultation-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.consultation-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a202c;
}

.step-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.map-placeholder {
    padding: 100px 20px;
    text-align: center;
    font-size: 18px;
    color: #4a5568;
}

.thanks-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a202c;
}

.btn-secondary {
    display: inline-block;
    background-color: #e2e8f0;
    color: #2d3748;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.thanks-visual {
    flex: 1;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a202c;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-content ul {
    margin: 16px 0 24px 32px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

.legal-content a {
    color: #2d3748;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

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

    .intro-section {
        flex-direction: column;
    }

    .intro-right {
        padding: 40px 30px;
    }

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

    .benefits-asymmetric {
        flex-direction: column;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .form-section {
        flex-direction: column;
    }

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

    .about-story {
        flex-direction: column;
    }

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

    .team-approach {
        flex-direction: column;
    }

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

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

    .service-info {
        padding: 40px 30px;
    }

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

    .contact-info-block {
        padding: 40px 30px;
    }

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

    .thanks-content {
        padding: 50px 30px;
    }

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

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