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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

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

.nav-links a {
    font-size: 15px;
    color: #495057;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.hero-offset {
    display: flex;
    align-items: stretch;
    min-height: 90vh;
    padding: 120px 40px 60px 40px;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 36px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #007bff;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: 60px;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
}

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

.intro-block-small {
    flex: 0 0 35%;
    margin-top: 80px;
    background-color: #f1f3f5;
    border-radius: 12px;
    overflow: hidden;
}

.intro-block-large {
    flex: 1;
    padding: 40px;
}

.intro-block-large h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block-large p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-overlap {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    background: #f8f9fa;
    position: relative;
}

.insight-text {
    flex: 1;
    padding: 40px;
    z-index: 2;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #495057;
    line-height: 1.6;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
}

.insight-visual {
    flex: 0 0 40%;
    position: relative;
    margin-top: -40px;
    background-color: #dee2e6;
    border-radius: 12px;
    overflow: hidden;
}

.insight-visual img {
    width: 100%;
    height: 100%;
}

.services-grid {
    padding: 120px 40px;
    background: #ffffff;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 60px;
    margin-left: 120px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 24px 20px 24px;
    line-height: 1.5;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin: 0 24px 20px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #0056b3;
}

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 80px;
}

.card-offset-3 {
    margin-left: 40px;
}

.card-offset-4 {
    margin-left: 120px;
}

.card-offset-5 {
    margin-left: 60px;
}

.trust-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.form-section-asymmetric {
    display: flex;
    gap: 60px;
    padding: 100px 40px;
    align-items: stretch;
}

.form-visual {
    flex: 0 0 40%;
    background-color: #dee2e6;
    border-radius: 12px;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
}

.form-container {
    flex: 1;
    padding: 40px;
}

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

.form-description {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 36px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #e9ecef;
}

.btn-submit {
    padding: 16px;
    background: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #218838;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #495057;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 80px 40px;
    background: #1a1a1a;
    color: #e9ecef;
}

.footer-block-1 {
    flex: 1 1 300px;
}

.footer-block-1 h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-block-1 p {
    font-size: 16px;
    color: #adb5bd;
}

.footer-block-2,
.footer-block-3 {
    flex: 0 1 200px;
}

.footer-block-2 h4,
.footer-block-3 h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-block-2 li,
.footer-block-3 li {
    margin-bottom: 10px;
}

.footer-block-2 a,
.footer-block-3 a {
    color: #adb5bd;
    transition: color 0.3s;
}

.footer-block-2 a:hover,
.footer-block-3 a:hover {
    color: #ffffff;
}

.footer-block-4 {
    flex: 1 1 100%;
    border-top: 1px solid #343a40;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #dee2e6;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.btn-cookie-accept {
    background: #28a745;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: #6c757d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #5a6268;
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 100px 20px 40px 20px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
    }

    .intro-block-small {
        margin-top: 0;
    }

    .insight-overlap {
        flex-direction: column;
        padding: 60px 20px;
    }

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

    .section-title-offset {
        margin-left: 0;
        font-size: 36px;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-left: 0;
    }

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

    .footer-asymmetric {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}