body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    font-weight: 600;
    color: #f8f8f8;
}

.hero .subheadline {
    font-size: 1.4em;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 20px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 30px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

.ebook-mockup-placeholder {
    width: 400px;
    height: 300px;
    background-color: #ccc;
    margin: 60px auto 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: #666;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

section {
    padding: 80px 0;
    text-align: center;
}

h2 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.problem-section,
.solution-section,
.audience-section {
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-section ul,
.solution-section ul,
.audience-section ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.problem-section li,
.solution-section li,
.audience-section li {
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.problem-section li::before {
    content: '❓';
    position: absolute;
    left: 0;
    top: 0;
}

.solution-section li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
    font-weight: bold;
}

.audience-section li::before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0;
}

.problem-statement {
    font-size: 1.5em;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 40px;
}

.bonus-section {
    background-color: #f0f2f5;
}

.bonus-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-item {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-10px);
}

.bonus-item h3 {
    font-size: 1.5em;
    color: #3498db;
    margin-bottom: 15px;
    font-weight: 600;
}

.bonus-item p {
    color: #666;
}

.offer-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 80px 0;
}

.offer-section h2 {
    color: #fff;
}

.price-old {
    font-size: 1.8em;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 10px;
}

.price-new {
    font-size: 4em;
    font-weight: 800;
    color: #27ae60;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.value-statement {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 40px;
}

.urgency-section {
    background-color: #e74c3c;
    color: #fff;
    padding: 30px 0;
    font-size: 1.5em;
    font-weight: 600;
}

.urgency-section p {
    margin: 10px 0;
}

.final-cta-section {
    background-color: #fff;
    padding: 80px 0;
}

.final-cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.security-info {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.faq-section {
    background-color: #f0f2f5;
}

.faq-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: #e74c3c;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .hero .subheadline {
        font-size: 1.2em;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    h2 {
        font-size: 2em;
    }

    .problem-section li,
    .solution-section li,
    .audience-section li {
        font-size: 1.1em;
    }

    .price-new {
        font-size: 3em;
    }

    .urgency-section {
        font-size: 1.2em;
    }

    .bonus-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero .subheadline {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    h2 {
        font-size: 1.8em;
    }

    .ebook-mockup-placeholder {
        width: 100%;
        height: 250px;
    }

    .price-new {
        font-size: 2.5em;
    }

    .urgency-section {
        font-size: 1em;
    }

    .faq-item {
        padding: 20px;
    }
}



.ebook-mockup-image {
    max-width: 400px;
    height: auto;
    margin: 60px auto 0;
    display: block;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ebook-mockup-image:hover {
    transform: scale(1.03);
}

.ebook-mockup-placeholder {
    display: none; /* Hide the placeholder now that the image is present */
}




.problem-section li img,
.solution-section li img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

.bonus-item h3 img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 15px;
}




.audience-section li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #3498db;
}


