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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px 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;
    gap: 24px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

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

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

.btn-cookie-accept:hover {
    background-color: #357abd;
}

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

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

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

.nav-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8e8e8;
}

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 600px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
}

.intro-story {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.story-container img {
    width: 45%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.problem-reveal {
    background-color: #f4f4f4;
    padding: 80px 40px;
    margin-bottom: 100px;
}

.problem-reveal h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.problem-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.problem-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    flex: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.problem-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.insight-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.insight-content {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.insight-image {
    width: 48%;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.trust-builder {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 80px 40px;
    margin-bottom: 100px;
}

.trust-builder h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.testimonials-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial span {
    font-size: 14px;
    color: #b0b0b0;
}

.benefits-reveal {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.benefits-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.benefit-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit {
    flex: 1 1 calc(50% - 15px);
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.benefit h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.services-pricing {
    background-color: #fafafa;
    padding: 80px 40px;
    margin-bottom: 100px;
}

.services-pricing h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.service-card p {
    margin: 0 24px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin: 20px 24px 16px;
}

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

.select-service:hover {
    background-color: #357abd;
}

.select-service.selected {
    background-color: #2c6aa0;
}

.form-section {
    max-width: 700px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.selected-service-display {
    background-color: #e8f4ff;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    text-align: center;
}

.selected-service-display p {
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #357abd;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.references li a {
    color: #4a90e2;
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .story-container {
        flex-direction: column;
    }

    .story-container img {
        width: 100%;
    }

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

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

    .insight-image {
        width: 100%;
    }

    .testimonials-flow {
        flex-direction: column;
    }

    .benefit-blocks {
        flex-direction: column;
    }

    .services-layout {
        flex-direction: column;
    }

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

    .nav-links {
        display: none;
    }
}