* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

.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;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    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-asymmetric {
    padding: 30px 5%;
    position: relative;
}

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

.brand-offset {
    transform: translateY(-5px);
}

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

.nav-floating {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-asymmetric {
    overflow-x: hidden;
}

.hero-offset {
    padding: 80px 5% 100px;
    background-color: #f8f9fa;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 35px;
}

.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);
}

.hero-image-wrap {
    flex: 1;
    position: relative;
    transform: translateX(20px);
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
}

.intro-irregular {
    padding: 120px 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.content-offset-left {
    flex: 1.2;
    transform: translateY(40px);
}

.content-offset-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.visual-accent {
    flex: 1;
    background-color: #f0f0f0;
}

.visual-accent img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background-color: #e0e0e0;
}

.services-stacked {
    padding: 100px 5%;
    background-color: #fafbfc;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 70px;
    text-align: left;
    padding-left: 60px;
}

.section-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.subheading {
    font-size: 19px;
    color: #6b7280;
}

.service-cards-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-lg,
.service-card-md,
.service-card-sm {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-lg {
    align-items: center;
}

.service-card-md {
    align-items: center;
}

.service-card-sm {
    padding: 40px;
}

.card-visual {
    flex: 1;
    min-height: 300px;
    background-color: #e8e8e8;
}

.card-visual img {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #e0e0e0;
}

.card-text {
    flex: 1.3;
    padding: 40px;
}

.card-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-select-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateX(4px);
}

.trust-block-offset {
    padding: 120px 5% 120px 15%;
    background-color: #ffffff;
}

.trust-content {
    max-width: 900px;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.trust-visual-inline img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 6px;
    background-color: #e0e0e0;
}

.form-section-irregular {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateX(-40px);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 35px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

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

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

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

.btn-submit:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.final-cta-offset {
    padding: 100px 5% 100px 20%;
    background-color: #f8f9fa;
}

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

.cta-content-irregular h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-content-irregular p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 80px 5% 40px;
}

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

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

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

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #3498db;
}

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

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

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

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

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

.contact-info {
    font-size: 16px;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.disclaimer-footer {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin-top: 20px;
    font-style: italic;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
}

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

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

.thanks-container .service-selected {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
    margin: 30px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #2980b9;
}

.services-page-layout {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-page-layout h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-page-layout .intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 60px;
}

.service-detail {
    margin-bottom: 60px;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-detail .price {
    font-size: 28px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

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

.about-page-layout {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.about-page-layout h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-page-layout h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.contact-page-layout {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-page-layout h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-page-layout h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-page-layout p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.legal-page {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

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

    .hero-text-block {
        padding-right: 0;
    }

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

    .hero-image-wrap {
        transform: translateX(0);
    }

    .intro-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .content-offset-left {
        transform: translateY(0);
    }

    .service-card-lg,
    .service-card-md {
        flex-direction: column;
    }

    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

    .form-container-offset {
        transform: translateX(0);
        padding: 40px 30px;
    }

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