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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.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: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #e8b923;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #d4a520;
}

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

.btn-reject:hover {
    border-color: #888;
}

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    border: 1px solid #e0e0e0;
}

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

.hero-left {
    flex: 1;
    padding: 60px 60px 60px 40px;
}

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

.hero-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background: #d4a520;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,185,35,0.3);
}

.hero-right {
    flex: 1;
    background: #f5f5f5;
}

.hero-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.intro-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background: #e0e0e0;
}

.intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

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

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-item {
    flex: 1;
    min-width: 280px;
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 8px;
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e8b923;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.insight-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

.insight-text h2 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.insight-visual {
    flex: 1;
    background: #ddd;
}

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

.services-detailed {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    gap: 60px;
    align-items: center;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

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

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

.price-tag {
    font-size: 28px;
    color: #e8b923;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #333;
    transform: translateY(-2px);
}

.trust-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

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

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.form-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.benefits-list li {
    font-size: 17px;
    color: #2c3e50;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e8b923;
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background: #f8f9fa;
    padding: 50px 45px;
    border-radius: 8px;
}

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

#contact-form input,
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #e8b923;
}

.submit-btn {
    width: 100%;
    background: #e8b923;
    color: #1a1a1a;
    padding: 16px;
    border: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background: #f0f0f0;
    padding: 50px 40px;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #e8b923;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .service-card-split,
    .form-split {
        flex-direction: column;
    }

    .service-card-split.reverse {
        flex-direction: column;
    }

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

    .navigation {
        flex-direction: column;
        gap: 20px;
    }
}

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

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

    .problem-grid {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}