/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(to bottom, #0f172a, #1e293b);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(to right, #60a5fa, #4ade80);
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 24px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: #3b82f6;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2563eb;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: rgba(30, 41, 59, 0.5);
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 20px;
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid #334155;
    border-radius: 10px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #94a3b8;
}

/* Bundle Section */
.bundle {
    padding: 60px 20px;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.bundle-item {
    padding: 20px;
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid #334155;
    border-radius: 10px;
}

.bundle-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.bundle-item ul {
    list-style: none;
}

.bundle-item li {
    color: #94a3b8;
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background-color: rgba(30, 41, 59, 0.5);
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 10px;
    text-align: center;
}

.price {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-description {
    color: #94a3b8;
    margin-bottom: 20px;
}

.benefits {
    list-style: none;
    margin-bottom: 20px;
}

.benefits li {
    color: #94a3b8;
    margin-bottom: 10px;
}

.purchase-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: #3b82f6;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
    width: 100%;
}

.purchase-button:hover {
    background-color: #2563eb;
}

/* Footer */
footer {
    padding: 40px 20px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 18px;
    }
    h2 {
        font-size: 28px;
    }
    .features-grid, .bundle-grid {
        grid-template-columns: 1fr;
    }
}