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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #1a202c;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

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

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

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a90e2;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px 40px;
    gap: 60px;
    align-items: center;
}

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

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

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #4a5568;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d3748;
    padding: 16px 38px;
    text-decoration: none;
    border: 2px solid #2d3748;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d3748;
    color: #ffffff;
}

.intro-block-offset {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-text-irregular {
    flex: 2;
    padding-top: 40px;
}

.intro-text-irregular h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: #1a202c;
}

.intro-text-irregular p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-stats-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #4a90e2;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #718096;
}

.services-preview-asymmetric {
    background-color: #fafbfc;
    padding: 90px 40px;
}

.services-header-left {
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a202c;
}

.services-header-left p {
    font-size: 19px;
    color: #4a5568;
    max-width: 700px;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 32px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 22px;
    background-color: #e2e8f0;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-large {
    flex: 1 1 calc(50% - 15px);
}

.service-highlight {
    border: 2px solid #4a90e2;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 18px;
    display: block;
}

.select-service {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #357abd;
}

.why-us-overlap {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.why-content-block {
    flex: 1;
}

.why-content-block h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.why-list {
    list-style: none;
    padding-left: 0;
}

.why-list li {
    font-size: 17px;
    padding: 12px 0 12px 30px;
    position: relative;
    color: #2d3748;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 20px;
}

.why-image-offset {
    flex: 1;
    margin-left: -30px;
}

.why-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.form-section-irregular {
    background-color: #f7fafc;
    padding: 90px 40px;
}

.form-intro-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.form-intro-block h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: #1a202c;
}

.form-intro-block p {
    font-size: 18px;
    color: #4a5568;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
}

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

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

.main-footer {
    background-color: #1a202c;
    color: #e0e0e0;
    padding: 60px 40px 30px 40px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background-color: #2d3748;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #4a5568;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #357abd;
}

.cookie-reject {
    background-color: #718096;
    color: #ffffff;
}

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

.about-hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text-block h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.about-text-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 800px;
}

.about-hero-offset img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.story-section-irregular {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content-left {
    flex: 1;
}

.story-content-left h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: #1a202c;
}

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

.story-image-overlap {
    flex: 1;
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.values-block-asymmetric {
    background-color: #fafbfc;
    padding: 80px 40px;
}

.values-block-asymmetric h2 {
    max-width: 1400px;
    margin: 0 auto 50px auto;
    font-size: 42px;
    color: #1a202c;
}

.values-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.team-section-irregular {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-intro-offset {
    flex: 1;
}

.team-intro-offset h2 {
    font-size: 40px;
    margin-bottom: 22px;
    color: #1a202c;
}

.team-intro-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.team-image-block {
    flex: 1;
}

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

.cta-about-section {
    background-color: #2d3748;
    padding: 80px 40px;
    text-align: center;
}

.cta-content-block h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-block p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.cta-content-block .cta-primary {
    background-color: #4a90e2;
}

.cta-content-block .cta-primary:hover {
    background-color: #357abd;
}

.services-hero-irregular {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px 40px;
    text-align: center;
}

.services-hero-irregular h1 {
    font-size: 50px;
    margin-bottom: 22px;
    color: #1a202c;
}

.services-hero-irregular p {
    font-size: 20px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.service-detail-card.offset-left {
    padding-left: 40px;
}

.service-detail-card.offset-right {
    padding-right: 40px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #1a202c;
}

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

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

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

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.service-price-block {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

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

.services-cta-section {
    background-color: #f7fafc;
    padding: 80px 40px;
    text-align: center;
}

.cta-content-irregular {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-irregular h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a202c;
}

.cta-content-irregular p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
}

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

.contact-intro-block h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-intro-block p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 750px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-layout-irregular {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details-card {
    flex: 1;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.contact-details-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

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

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

.contact-image-offset {
    flex: 1;
    margin-top: -50px;
}

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

.contact-additional-info {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.additional-info-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
    max-width: 900px;
}

.thanks-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

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

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

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

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

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

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

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

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-content strong {
    color: #2d3748;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #cbd5e0;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    font-size: 15px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-asymmetric,
    .intro-block-offset,
    .why-us-overlap,
    .story-section-irregular,
    .team-section-irregular,
    .service-detail-card,
    .contact-layout-irregular,
    .thanks-section {
        flex-direction: column;
    }

    .nav-menu {
        gap: 20px;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

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