body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

img {
    max-width: 100%;
    height: auto;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.top-bar {
    background-color: #f39c12;
    color: #000000;
    padding: 10px;
    font-weight: bold;
}

.main-heading h1 {
    font-size: 3em;
    margin: 20px 0;
    color: #f39c12;
}

.main-heading p {
    font-size: 1.2em;
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.video-placeholder {
    margin-right: 40px;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.benefits-list li::before {
    content: '✔';
    color: #f39c12;
    margin-right: 10px;
}

.cta-button a {
    background: linear-gradient(to right, #f39c12, #f56a6a);
    color: #ffffff;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 10px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.get-serious {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.get-serious h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.points {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.point {
    display: flex;
    align-items: flex-start;
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    width: 40%;
}

.point .number {
    font-size: 4em;
    font-weight: bold;
    color: #f39c12;
    margin-right: 20px;
    line-height: 1;
}

.point p {
    text-align: left;
    font-size: 1.1em;
    margin: 0;
}

.point a {
    color: #f39c12;
    text-decoration: underline;
}

.imagine {
    font-style: italic;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.get-serious h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.green-card {
    background-color: #2c3e50;
    padding: 20px;
    border-radius: 10px;
    margin: 40px auto;
    width: 80%;
}

.health-issues {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.health-issues h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto;
    width: 80%;
}

.issue {
    background-color: #f0f0f0;
    color: #000000;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
}

.issue::before {
    content: '✗';
    color: red;
    margin-right: 10px;
}

.nlp-box {
    border: 2px dashed #f39c12;
    padding: 20px;
    margin: 40px auto;
    width: 80%;
}

.enroll {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.enroll h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.pricing {
    margin: 40px 0;
}

.original-price {
    text-decoration: line-through;
    font-size: 2em;
    color: #ff0000;
}

.special-price {
    font-size: 3em;
    font-weight: bold;
    color: #2ecc71;
}

.training-details {
    text-align: center;
    padding: 40px 20px;
}

.training-details h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}

.detail-item {
    background-color: #f0f0f0;
    color: #000000;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.detail-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.benefits {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.benefits h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}

.benefit-item {
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f39c12;
}

.benefit-item p {
    text-align: left;
}

.benefit-item::before {
    content: '✔';
    color: #f39c12;
    margin-right: 10px;
    font-size: 1.5em;
}

.host {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.host h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.host-box {
    background-color: #000000;
    padding: 40px;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
}

.host-info {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.host-image {
    margin-right: 40px;
}

.host-image img {
    border-radius: 50%;
}

.host-details h3 {
    font-size: 2em;
    text-align: left;
}

.host-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.host-details li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.host-details li::before {
    content: '>';
    color: #f39c12;
    margin-right: 10px;
}

.host-bio p {
    text-align: left;
    font-size: 1.1em;
    line-height: 1.6;
}

.testimonials {
    text-align: center;
    padding: 40px 20px;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 80%;
    margin: 0 auto 40px auto;
}

.testimonial-item {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.author {
    text-align: right;
    font-weight: bold;
    margin-top: 20px;
}

.bonuses {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    color: #000000;
}

.bonus-item {
    background-color: #e0e0e0;
    color: #000000;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    margin: 20px auto;
    text-align: left;
    position: relative;
}

.bonus-tag {
    background-color: #f39c12;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.bonus-item h3 {
    margin-top: 40px;
}

.value {
    text-align: right;
    font-weight: bold;
    font-size: 1.2em;
    color: #f39c12;
}

.total-value {
    margin: 40px 0;
}

.total-value p {
    font-size: 1.5em;
    margin: 10px 0;
}

.buy-today {
    font-size: 2.5em !important;
    font-weight: bold;
    color: #2ecc71;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-content {
    width: 60%;
    margin: 0 auto 40px auto;
    text-align: left;
}

.footer-content h3 {
    font-size: 2em;
    color: #f39c12;
}

.footer-content a {
    color: #f39c12;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .main-heading h1 {
        font-size: 2em;
    }

    .video-section {
        flex-direction: column;
    }

    .video-placeholder {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .points {
        flex-direction: column;
        gap: 20px;
    }

    .point {
        width: 90%;
    }

    .issues-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .details-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .host-info {
        flex-direction: column;
    }

    .host-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .bonus-item {
        width: 90%;
    }

    .footer-content {
        width: 90%;
    }
}
