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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 15px;
}

.hero-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.intro-story {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.intro-story p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.image-section {
    width: 100%;
    background-color: #e8e8e8;
}

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

.problem-amplify {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

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

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

.insight-reveal {
    padding: 6rem 2rem;
    background-color: #2c2c2c;
    color: white;
}

.centered {
    text-align: center;
}

.insight-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.insight-reveal p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-builder {
    padding: 5rem 2rem;
    background-color: #f0f0f0;
}

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

.trust-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.trust-card {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.trust-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.trust-card p {
    font-size: 1rem;
    color: #555;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

blockquote {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 4px solid #4CAF50;
}

blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.visual-break {
    width: 100%;
    background-color: #ddd;
}

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

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.service-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.service-visual {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-visual.reverse {
    flex-direction: row-reverse;
}

.service-visual img {
    width: 45%;
    height: 350px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 1.5rem 0;
}

.cta-service {
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background-color: #4CAF50;
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 2rem;
    background-color: #2c2c2c;
    color: white;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.final-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #555;
}

.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col ul {
    font-size: 0.95rem;
    color: #ccc;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .ad-notice {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-visual,
    .service-visual.reverse {
        flex-direction: column;
    }

    .service-visual img {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}