* {
    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: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-banner.active {
    display: flex;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-cookie-accept:hover {
    background-color: #45a049;
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1300px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-disclosure {
    font-size: 11px;
    color: #666;
    border-left: 1px solid #ddd;
    padding-left: 20px;
    flex-shrink: 0;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    top: 0;
    right: -10%;
    width: 65%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-text-floating {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 8%;
    background: rgba(255, 255, 255, 0.97);
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-floating h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-text-floating p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
}

.hook-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.hook-container-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.hook-text-block {
    flex: 1;
    padding-top: 60px;
}

.hook-text-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
}

.hook-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.hook-visual-offset {
    flex: 1;
    margin-top: -60px;
    background-color: #f5f5f5;
}

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

.problem-amplify {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

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

.problem-left {
    flex: 1;
}

.problem-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
}

.problem-left p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.problem-right {
    flex: 1;
    position: relative;
}

.insight-card-overlapped {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 45px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

.insight-card-overlapped h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-card-overlapped p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.trust-storytelling {
    padding: 120px 20px;
    background-color: #ffffff;
}

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

.story-image-left {
    flex: 1;
    background-color: #efefef;
}

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

.story-text-stacked {
    flex: 1;
    padding-left: 40px;
}

.story-text-stacked h3 {
    font-size: 34px;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
}

.story-text-stacked p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

.testimonials-scattered {
    padding: 100px 20px;
    background-color: #f4f4f4;
}

.testimonials-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 70px;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-cards-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    position: relative;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.card-offset-1 {
    margin-top: 20px;
}

.card-offset-2 {
    margin-top: -10px;
}

.card-offset-3 {
    margin-top: 30px;
}

.benefits-reveal {
    padding: 120px 20px;
    background-color: #ffffff;
}

.benefits-layered {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
}

.benefit-block {
    background: #f8f8f8;
    padding: 45px 40px;
    border-left: 4px solid #007acc;
    max-width: 500px;
    position: absolute;
}

.benefit-block h4 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.benefit-block p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.benefit-top-left {
    top: 0;
    left: 0;
}

.benefit-bottom-right {
    bottom: 0;
    right: 0;
}

.benefit-center-offset {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-left: none;
}

.services-intro {
    padding: 80px 20px 60px;
    background-color: #fafafa;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.services-intro-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.services-asymmetric {
    padding: 60px 20px 100px;
    background-color: #fafafa;
}

.service-item {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #ececec;
}

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

.service-details {
    flex: 1;
    padding: 50px 45px;
}

.service-details h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #007acc;
    margin-bottom: 25px;
}

.btn-select-service {
    background-color: #007acc;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #005fa3;
}

.cta-primary-offset {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

.cta-content-floating {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-floating h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.form-container-asymmetric {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 50px 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-container-asymmetric h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: #007acc;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #005fa3;
}

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

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 40px;
    background: white;
    border-left: 4px solid #ff9800;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 20px 30px;
}

.footer-content-scattered {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-block p,
.footer-block a {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-block a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #007acc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.legal-page {
    padding: 140px 20px 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

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

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-container {
    max-width: 700px;
    background: white;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

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

.thanks-service-info {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 17px;
    color: #333;
}

.btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #007acc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-back-home:hover {
    background-color: #005fa3;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 25px;
        flex-direction: column;
        gap: 15px;
    }

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

    .hook-container-irregular,
    .problem-split,
    .story-asymmetric-grid {
        flex-direction: column;
    }

    .service-layout-1,
    .service-layout-2 {
        flex-direction: column;
    }

    .benefits-layered {
        position: relative;
        min-height: auto;
    }

    .benefit-block {
        position: relative;
        margin-bottom: 30px;
    }

    .benefit-top-left,
    .benefit-bottom-right,
    .benefit-center-offset {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-text-floating {
        padding: 40px 30px;
    }

    .hero-text-floating h1 {
        font-size: 28px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}