* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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;
    margin: 0;
}

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

.cookie-buttons {
    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: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3a8eef;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a9eff;
}

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-asymmetric {
    min-height: 600px;
    background-color: #f9f9f9;
    overflow: hidden;
}

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

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

.hero-text-block h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1;
    min-width: 400px;
    position: relative;
    transform: translateY(-20px) translateX(30px);
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-block p {
    font-size: 20px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.problem-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.split-asymmetric {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.problem-text {
    flex: 1.2;
    min-width: 300px;
}

.problem-text h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.problem-visual {
    flex: 0.8;
    min-width: 300px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cards-offset {
    padding: 120px 20px;
    background-color: #ffffff;
}

.section-heading-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 60px;
    color: #1a1a1a;
}

.cards-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:nth-child(odd) {
    transform: translateY(-20px);
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #4a9eff;
}

.trust-building {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.trust-content h3 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: #4a9eff;
    color: #ffffff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-item h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonial-block {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #4a9eff;
    border-radius: 6px;
}

.testimonial-block blockquote {
    font-style: normal;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-size: 15px;
    color: #666666;
    font-style: normal;
}

.cta-section-offset {
    padding: 100px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-content-asymmetric {
    max-width: 700px;
    margin-left: 80px;
}

.cta-content-asymmetric h3 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content-asymmetric p {
    font-size: 18px;
    line-height: 1.7;
}

.form-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.form-wrapper-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 100px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-wrapper-offset h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #4a9eff;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #4a9eff;
    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: #3a8eef;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.disclaimer-box {
    padding: 30px;
    background-color: #fff8e6;
    border: 1px solid #ffd966;
    border-radius: 6px;
}

.disclaimer-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.content-page {
    padding: 80px 20px;
    min-height: 60vh;
}

.content-page h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.content-page ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.content-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
}

.thanks-message h2 {
    font-size: 42px;
    color: #4a9eff;
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-message .cta-primary {
    margin-top: 20px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 60px;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

    .hero-content-wrap {
        padding: 40px 20px;
    }

    .hero-image-offset {
        transform: none;
    }

    .section-heading-offset {
        margin-left: 0;
        font-size: 32px;
    }

    .cta-content-asymmetric {
        margin-left: 0;
    }

    .form-wrapper-offset {
        margin-right: 0;
    }

    .service-card:nth-child(odd) {
        transform: none;
    }

    .main-nav {
        gap: 15px;
    }

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