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

:root {
    --primary-color: #2d3e50;
    --secondary-color: #4a90e2;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.header-offset {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-light);
}

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 400px;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-image-irregular {
    flex: 1;
    min-width: 400px;
    position: relative;
    margin-top: -40px;
}

.hero-image-irregular img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.intro-stagger {
    padding: 100px 0;
    background: var(--bg-white);
}

.intro-block-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.intro-block-left h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-block-left p {
    font-size: 18px;
    color: var(--text-light);
}

.intro-block-right {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
    max-width: 900px;
}

.intro-block-right p {
    flex: 1;
    min-width: 300px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.intro-block-right img {
    flex: 1;
    min-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.services-overlap {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 80px;
    color: var(--primary-color);
    padding-left: 60px;
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-offset-1 { margin-top: 0; }
.card-offset-2 { margin-top: 30px; }
.card-offset-3 { margin-top: 60px; }
.card-offset-4 { margin-top: 20px; }
.card-offset-5 { margin-top: 50px; }
.card-offset-6 { margin-top: 10px; }

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin: 0 24px 16px;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 16px 24px;
}

.btn-service {
    display: block;
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.insight-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.insight-section h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.insight-intro {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.8;
}

.insight-intro a {
    color: var(--secondary-color);
    text-decoration: none;
}

.insight-intro a:hover {
    text-decoration: underline;
}

.insight-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.insight-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.insight-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.form-section-irregular {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d3e50 0%, #1a2634 100%);
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.form-wrapper-offset h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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);
}

.btn-submit {
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-references {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.references-list a:hover {
    color: white;
    text-decoration: underline;
}

.footer-disclaimer {
    margin-top: 40px;
    padding: 24px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: #3a7bc8;
}

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

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-block img {
    flex: 1;
    min-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.story-text {
    flex: 1;
    min-width: 400px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

.cta-section,
.cta-section-alt {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #2d3e50 0%, #1a2634 100%);
    color: white;
}

.cta-section h2,
.cta-section-alt h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p,
.cta-section-alt p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover,
.cta-button-secondary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 80px 0;
}

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

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 24px 0 16px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

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

.btn-select-service {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 350px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 32px;
}

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

.contact-block p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-note p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    min-width: 400px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.additional-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.additional-info h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 28px;
    background: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

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

.thanks-content {
    text-align: center;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.thanks-info {
    text-align: left;
    margin: 40px 0;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.next-steps {
    padding-left: 24px;
}

.next-steps li {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-program {
    margin: 40px 0;
    padding: 24px;
    background: #e8f4f8;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.thanks-program h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.selected-service-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.btn-primary {
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.legal-content {
    padding: 80px 0;
}

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

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

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-content-offset {
        padding: 0 20px;
    }

    .hero-text-block,
    .hero-image-irregular {
        min-width: 100%;
    }

    .section-title-offset {
        font-size: 32px;
        padding-left: 0;
    }

    .service-card {
        width: 100%;
    }

    .story-block img,
    .story-text {
        min-width: 100%;
    }

    .service-detail-content,
    .service-detail-image {
        min-width: 100%;
    }

    .contact-info,
    .contact-image {
        min-width: 100%;
    }

    .form-wrapper-offset {
        padding: 40px 24px;
    }

    .nav-asymmetric {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 20px;
    }
}