* {
    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-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5282;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c5282;
    transition: 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 80px 40px 60px;
    gap: 60px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    max-width: 520px;
    padding-left: 60px;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #1a202c;
}

.hero-content-left p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2a4365;
}

.hero-image-right {
    flex: 1;
    max-width: 650px;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #e2e8f0;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: flex-start;
}

.offset-block {
    flex: 1;
    padding-left: 120px;
    padding-top: 40px;
}

.offset-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.offset-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.insight-card {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
}

.insight-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e2e8f0;
}

.insight-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.section-header-offset {
    max-width: 600px;
    margin-left: 80px;
    margin-bottom: 70px;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: #4a5568;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #1a202c;
}

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

.service-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5282;
    margin: 0 25px 20px;
}

.service-card .select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 0;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #2a4365;
}

.service-card.selected {
    border: 3px solid #2c5282;
}

.offset-1 {
    flex: 1 1 calc(40% - 20px);
    margin-left: 0;
}

.offset-2 {
    flex: 1 1 calc(35% - 20px);
    margin-top: 50px;
}

.offset-3 {
    flex: 1 1 calc(38% - 20px);
    margin-left: 80px;
}

.offset-4 {
    flex: 1 1 calc(42% - 20px);
    margin-top: -40px;
}

.offset-5 {
    flex: 1 1 calc(36% - 20px);
    margin-left: 40px;
}

.form-section-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 70px;
    align-items: center;
    background-color: #ffffff;
}

.form-wrapper {
    flex: 1;
    max-width: 550px;
    padding-left: 60px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px 0;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2a4365;
}

.form-image-offset {
    flex: 1;
    max-width: 500px;
    margin-top: 60px;
}

.form-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: #e2e8f0;
}

.why-us-offset {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.why-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: 100px;
}

.why-content h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #1a202c;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c5282;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    margin-bottom: 10px;
    color: #cbd5e0;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e2e8f0;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #2c3e50;
}

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

.accept-btn,
.reject-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accept-btn {
    background-color: #2c5282;
    color: #ffffff;
}

.accept-btn:hover {
    background-color: #2a4365;
}

.reject-btn {
    background-color: #e2e8f0;
    color: #2c3e50;
}

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

.cookie-content a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content-left {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .offset-block {
        padding-left: 0;
        padding-top: 0;
    }

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

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

    .service-card {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }

    .form-section-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .form-wrapper {
        padding-left: 0;
        max-width: 100%;
    }

    .floating-nav {
        position: static;
        width: 100%;
        border-radius: 0;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content-left h1 {
        font-size: 2rem;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .section-header-offset h2 {
        font-size: 2rem;
    }

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