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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.hero-text 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%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.intro-asymmetric {
    padding: 100px 0;
    background-color: #ffffff;
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 800px;
}

.services-preview {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.section-header-left {
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 700;
}

.section-header-left p {
    font-size: 18px;
    color: #4a5568;
}

.service-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-left {
    flex-direction: row;
}

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

.service-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.service-details {
    flex: 1;
    padding: 20px 0;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

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

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.btn-service.selected {
    background-color: #27ae60;
}

.contact-form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.form-header-center h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.form-header-center p {
    font-size: 17px;
    color: #4a5568;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
}

.form-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dce1e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-indicators {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.trust-item {
    text-align: center;
    min-width: 200px;
}

.trust-item h4 {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 8px;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    color: #4a5568;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    padding: 100px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

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

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-card-visual {
    flex: 1;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

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

.service-features {
    margin: 30px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin: 28px 0;
}

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

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

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

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

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

.about-content-asymmetric {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.about-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-values-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 700;
}

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

.about-expertise {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.expertise-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.expertise-text {
    flex: 1.2;
}

.expertise-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.expertise-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.expertise-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
}

.about-commitment {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-commitment h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    text-align: center;
}

.about-commitment p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-info-layout {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-details-block {
    flex: 1;
    padding: 20px 0;
}

.contact-details-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.contact-details-block > p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

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

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

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

.contact-map-placeholder {
    flex: 1;
    min-height: 450px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.map-overlay p {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-additional {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 32px;
}

.contact-cta-center {
    margin-top: 32px;
}

.thanks-hero {
    padding: 120px 0;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-details {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    padding: 20px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 500px;
}

.thanks-details p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.thanks-details strong {
    color: #27ae60;
}

.thanks-next-steps {
    margin: 60px auto;
    max-width: 700px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a252f;
    font-weight: 700;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #34495e;
    font-weight: 600;
}

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

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-split,
    .about-hero-split {
        flex-direction: column;
    }

    .service-split,
    .service-detail-card,
    .contact-split,
    .expertise-layout {
        flex-direction: column;
    }

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

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

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container-wide,
    .container-medium,
    .container-narrow {
        padding: 0 24px;
    }

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

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

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-layout {
        flex-direction: column;
        gap: 32px;
    }

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

    .service-price {
        font-size: 28px;
    }

    .service-price-large {
        font-size: 32px;
    }
}
