* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #fff;
    border-bottom: 2px solid #ecf0f1;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 80px 8% 60px;
    gap: 60px;
    background-color: #f8f9fa;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding-left: 40px;
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #495057;
    line-height: 1.7;
}

.cta-offset {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image-irregular {
    flex: 1;
    position: relative;
    margin-right: -50px;
    margin-top: -30px;
}

.hero-image-irregular img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.info-block-left {
    display: flex;
    align-items: center;
    padding: 90px 8%;
    gap: 70px;
    background-color: #fff;
}

.info-visual {
    flex: 0.9;
}

.info-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.info-text-right {
    flex: 1.1;
}

.info-text-right h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: #2c3e50;
    font-weight: 700;
}

.info-text-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.overlapping-cards {
    padding: 100px 8% 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 50px;
    margin-left: 60px;
    color: #1a252f;
    font-weight: 700;
}

.cards-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
}

.card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.card-1 {
    margin-top: 0;
}

.card-2 {
    margin-top: 30px;
}

.card-3 {
    margin-top: 15px;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dee2e6;
}

.card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
    font-weight: 600;
}

.card p {
    padding: 0 20px 15px;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.price-tag {
    display: block;
    padding: 0 20px 20px;
    font-size: 20px;
    color: #27ae60;
    font-weight: 700;
}

.cta-inline {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-left: 60px;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #1a252f;
}

.split-asymmetric {
    display: flex;
    align-items: center;
    padding: 90px 8%;
    gap: 80px;
    background-color: #fff;
}

.split-text {
    flex: 1.2;
}

.split-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.split-visual-offset {
    flex: 0.8;
    margin-top: -50px;
}

.split-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.form-section-irregular {
    padding: 100px 8%;
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
    position: relative;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 100px;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.contact-form button {
    padding: 16px;
    background-color: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 8% 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

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

.footer-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #bdc3c7;
}

.footer-block p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-block-1 {
    flex: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    padding: 25px 8%;
    display: none;
    z-index: 2000;
    border-top: 3px solid #3498db;
}

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

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 16px;
    flex: 1;
}

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.cookie-btn-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.about-hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    gap: 70px;
    background-color: #f8f9fa;
}

.about-visual-left {
    flex: 0.9;
    margin-left: -40px;
}

.about-visual-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.about-text-irregular {
    flex: 1.1;
    padding-right: 40px;
}

.about-text-irregular h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 800;
}

.about-text-irregular p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
}

.timeline-asymmetric {
    padding: 90px 8%;
    background-color: #fff;
}

.timeline-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item-right {
    flex-direction: row;
    margin-left: 10%;
}

.timeline-item-left {
    flex-direction: row-reverse;
    margin-right: 10%;
}

.timeline-year {
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.timeline-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.values-irregular {
    padding: 90px 8%;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}

.values-title {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
    font-weight: 700;
}

.values-grid-offset {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card-1 {
    margin-top: 0;
}

.value-card-2 {
    margin-top: 30px;
}

.value-card-3 {
    margin-top: 15px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

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

.team-asymmetric {
    display: flex;
    align-items: center;
    padding: 90px 8%;
    gap: 70px;
    background-color: #fff;
}

.team-intro {
    flex: 1.2;
}

.team-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.team-visual {
    flex: 0.8;
}

.team-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.cta-section-offset {
    padding: 80px 8%;
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    text-align: center;
}

.cta-section-offset h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.cta-section-offset p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary {
    background-color: #fff;
    color: #4facfe;
}

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

.cta-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.services-hero {
    padding: 80px 8% 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 800;
}

.services-hero p {
    font-size: 20px;
    color: #495057;
}

.services-grid-irregular {
    padding: 60px 8%;
    background-color: #fff;
}

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

.service-offset-1 {
    flex-direction: row;
}

.service-offset-2 {
    flex-direction: row-reverse;
    margin-left: 50px;
}

.service-offset-3 {
    flex-direction: row;
}

.service-offset-4 {
    flex-direction: row-reverse;
    margin-left: 50px;
}

.service-offset-5 {
    flex-direction: row;
}

.service-offset-6 {
    flex-direction: row-reverse;
    margin-left: 50px;
}

.service-visual {
    flex: 0.8;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-details {
    flex: 1.2;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

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

.service-price {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #27ae60;
}

.price-note {
    font-size: 15px;
    color: #6c757d;
}

.service-cta {
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 60px 8%;
    background-color: #f8f9fa;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #e74c3c;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.contact-hero-offset {
    padding: 80px 8% 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 800;
}

.contact-hero-offset p {
    font-size: 20px;
    color: #495057;
}

.contact-layout-asymmetric {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    gap: 70px;
    background-color: #fff;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #34495e;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-visual-offset {
    flex: 1;
    margin-top: -40px;
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.contact-additional {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.info-cards-irregular {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    width: 340px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-hero {
    display: flex;
    align-items: center;
    padding: 100px 8%;
    gap: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    flex: 1;
    color: #fff;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-confirmation {
    font-weight: 600;
    font-size: 20px;
    margin-top: 25px;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e9ecef;
}

.next-steps {
    padding: 80px 8%;
    background-color: #fff;
}

.next-steps h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    width: 320px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 8%;
    background-color: #fff;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

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

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

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #7f8c8d;
    font-size: 15px;
}

@media (max-width: 768px) {
    .hero-asymmetric,
    .info-block-left,
    .split-asymmetric,
    .about-hero-offset,
    .team-asymmetric,
    .contact-layout-asymmetric,
    .thanks-hero {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-offset,
    .about-text-irregular {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-image-irregular {
        margin-right: 0;
        margin-top: 0;
    }

    .split-visual-offset,
    .contact-visual-offset {
        margin-top: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

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

    .service-item {
        flex-direction: column;
        gap: 30px;
    }

    .service-offset-2,
    .service-offset-4,
    .service-offset-6 {
        margin-left: 0;
    }

    .timeline-item-right,
    .timeline-item-left {
        margin-left: 0;
        margin-right: 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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