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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
}

.cookie-banner.active {
    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: 250px;
}

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

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

.btn-cookie {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #c0392b;
}

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-visual {
    margin-top: 70px;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.story-intro {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.story-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.story-lead {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c2c2c;
    line-height: 1.4;
}

.story-wrapper p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.visual-break {
    height: 500px;
    overflow: hidden;
    background-color: #2c2c2c;
}

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

.problem-reveal {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.problem-reveal h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f5f5f5;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.problem-card p {
    font-size: 16px;
    color: #555;
}

.insight-section {
    padding: 100px 30px;
    background-color: #fafafa;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.insight-text a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.insight-text a:hover {
    text-decoration: underline;
}

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

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

.trust-builder {
    padding: 100px 30px;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

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

.trust-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    text-align: center;
}

.trust-icon {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.trust-card p {
    font-size: 16px;
    color: #d0d0d0;
}

.testimonials-inline {
    padding: 100px 30px;
    background-color: #f2f2f2;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 35px;
    background-color: #ffffff;
    border-left: 5px solid #e74c3c;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    font-style: normal;
}

.benefits-reveal {
    padding: 100px 30px;
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c2c2c;
}

.benefits-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.benefit-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.benefit-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
}

.offer-preview {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.offer-preview h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.offer-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-card a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.service-card a:hover {
    text-decoration: underline;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 15px 0;
}

.btn-select {
    padding: 14px 28px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-section {
    padding: 80px 30px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 18px;
    color: #d0d0d0;
}

.form-section {
    padding: 100px 30px;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c2c2c;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

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

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

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

.references {
    padding: 60px 30px;
    background-color: #f9f9f9;
}

.references h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.reference-list {
    padding-left: 20px;
}

.reference-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.reference-list a {
    color: #e74c3c;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

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

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p {
    font-size: 14px;
    color: #d0d0d0;
}

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

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

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .insight-layout,
    .benefits-layout {
        flex-direction: column;
    }

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