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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    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: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a9eff;
    color: #ffffff;
}

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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f9f9f9;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: #4a9eff;
    color: #ffffff;
}

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

.cta-secondary {
    background: transparent;
    color: #4a9eff;
    border: 2px solid #4a9eff;
}

.cta-secondary:hover {
    background: #4a9eff;
    color: #ffffff;
}

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

.intro-text {
    flex: 1.3;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.intro-visual {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-full {
    padding: 120px 60px;
    background: #ffffff;
}

.insight-full h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 20px;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9eff;
    margin: 0 24px 20px;
    display: block;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.testimonial-offset {
    padding: 80px 60px;
    background: #4a9eff;
    margin: 0 60px;
    border-radius: 8px;
}

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 20px;
}

.testimonial-content cite {
    display: block;
    text-align: right;
    color: #ffffff;
    font-size: 16px;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

.approach-split {
    display: flex;
    min-height: 500px;
    margin-top: 100px;
}

.approach-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.approach-text .cta-secondary {
    align-self: flex-start;
    margin-top: 20px;
    border-color: #ffffff;
    color: #ffffff;
}

.approach-text .cta-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.form-section {
    padding: 100px 60px;
    background: #f8f9fa;
    text-align: center;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section > p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-notice {
    padding: 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 24px;
    text-align: center;
    color: #856404;
    font-weight: 500;
}

.form-notice.hidden {
    display: none;
}

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

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

.form-group input,
.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 textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

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

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

.btn-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.footer-extended {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.footer-col ul li a:hover {
    opacity: 1;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.page-header {
    padding: 100px 60px 60px;
    background: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

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

.page-content ul {
    margin: 20px 0 20px 30px;
}

.page-content ul li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.info-block {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

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

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

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

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        padding: 20px 30px;
        gap: 20px;
    }

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

    .hero-split,
    .intro-asymmetric,
    .approach-split {
        flex-direction: column;
    }

    .hero-content,
    .approach-text {
        padding: 60px 30px;
    }

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

    .insight-full {
        padding: 80px 30px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-offset {
        margin: 0 30px;
        padding: 60px 30px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }
}