/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.nav-links a {
    margin-left: 1rem;
}
.btn {
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #333;
}

/* Hero section styles */
.hero {
    background-color: #000;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.5rem;
    line-height: 1;
}
.hero h1 + div {
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}
.btn-white {
    background-color: #fff;
    color: #000;
}
.btn-white:hover {
    background-color: #f0f0f0;
}

/* Countdown timer styles */
.countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.countdown-item {
    margin: 0 1rem;
}
.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}
.countdown-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Modules section styles */
.modules {
    background-color: #f5f5f5;
    padding: 3rem 0;
}
.modules h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.module-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.module-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
#bundles {
    background-color: #f5f5f5;
    padding: 3rem 0;
}
#bundles h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.bundle-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.bundle-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Pricing section styles */
.pricing {
    padding: 4rem 0;
    text-align: center;
}
.pricing h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 2rem 0;
}
.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
}

/* CTA section styles */
.cta {
    background-color: #000;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.cta p {
    color: #ccc;
    margin-bottom: 2rem;
}

/* Footer styles */
footer {
    background-color: #f5f5f5;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.module-card__image,
.bundle-card__image {
    max-width: 100%;
}
.usual-price {
    text-decoration: line-through;
    color: #888;
}
.modal:not(.open) {
    display: none;
}
.modal {
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #fff;
    max-width: 80vw;
    margin: auto;
    padding: 5vw;
    border-radius: 12px;
    position: relative;
}
.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: transparent;
    border: none;
    transform: scaleX(1.25);
    cursor: pointer;
}
.module-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trigger-modal {
    text-decoration: underline;
}
.module-card p {
    margin-bottom: 1rem;
}
.module-card__price {
    margin-bottom: 10px;
    font-weight: bold;
}
.modal-content--two-col {
    width: 100%;
}
.bundle-card ul {
    padding-left: 20px;
    padding-bottom: 20px;
}
#bonus-module,
#community {
    background-color: #f5f5f5;
    padding: 3rem 0;
}
#bonus-module h2,
#community h2 {
    text-align: center;
    font-size: 2rem;
}
#community h2 + div {
    text-align: center;
    margin-bottom: 1rem;
}
ul {
    padding-left: 20px;
}
@media (min-width: 769px) and (max-width: 997px) {
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bundle-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (min-width: 769px) {
    .modal-content--two-col .modal-body ul {
        column-count: 2;
        column-gap: 5vw;
    }
}
/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 100%;
    }
    .hero {
        padding: 1.5rem 0;
    }
    .hero h1 {
        font-size: 2rem;
        padding-bottom: 10px;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .countdown {
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    .countdown-item {
        margin: 5px;
    }
    .countdown-number {
        font-size: 2rem;
    }
    .module-grid,
    .bundle-grid {
        grid-template-columns: 1fr;
    }
    .price {
        font-size: 2.5rem;
    }
}
@media (max-width: 600px) {
    .hero h1,
    .hero h1 + div {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
    }
    .hero h1 + div > span {
        display: block;
    }
    .hero h1 + div {
        margin-bottom: 20px;
    }
    section {
        padding: 1.5rem 0 !important;
    }
}
.money-back-guarantee {
    background-color: #f8f8f8;
    padding: 4rem 1rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    color: #333;
}

@media (max-width: 600px) {
    .guarantee-icon {
        width: 80px;
        height: 80px;
    }
}
.card-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
}
.card {
    flex: 0 0 auto;
    width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.card img {
    width: 100%;
    height: 95px; /* Maintaining the aspect ratio of 1200:400 */
    object-fit: cover;
}
.card-content {
    padding: 16px;
    padding-top: 6px;
}
.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
.card-description {
    font-size: 14px;
    color: #666;
}