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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.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;
}

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

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

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

.ad-label {
    font-size: 11px;
    color: #888;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 12px;
    font-weight: 500;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 650px;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 50px;
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 19px;
    color: #555;
    line-height: 1.5;
}

.narrative-flow {
    padding: 120px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

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

.image-text-offset {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

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

.image-block {
    flex: 1;
    background-color: #ddd;
}

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

.text-block {
    flex: 1;
    padding: 40px;
}

.text-block h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.trust-builder {
    padding: 100px 60px;
    background-color: #fff;
}

.insight-panel {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-panel h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.insight-panel > p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.feature-highlights {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.highlight-item {
    flex: 1;
    text-align: center;
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
}

.highlight-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #e0e0e0;
}

.highlight-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.testimonial-inline {
    padding: 100px 60px;
    background-color: #2c2c2c;
    color: #fff;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial-wrapper blockquote {
    flex: 1;
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial-wrapper cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 15px;
    color: #aaa;
}

.service-reveal {
    padding: 120px 60px;
    background-color: #fafafa;
}

.reveal-header {
    text-align: center;
    margin-bottom: 80px;
}

.reveal-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.service-card {
    flex: 1;
    min-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 30px 20px;
}

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

.service-card .select-service {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 15px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 60px;
    background-color: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-form {
    background-color: #fafafa;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    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;
}

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    padding: 60px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 10px;
}

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

.footer-column a:hover {
    color: #4a90e2;
}

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

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

@media (max-width: 768px) {
    .floating-nav {
        padding: 0 20px;
    }

    .nav-container {
        padding: 12px 20px;
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 40px;
        padding: 30px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .offset-container {
        flex-direction: column;
        gap: 40px;
    }

    .feature-highlights {
        flex-direction: column;
    }

    .testimonial-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .service-cards {
        flex-direction: column;
    }

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