body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #0e0e12;
    color: #e8e6e3;
}

a {
    color: inherit;
}

.hero {
    background: linear-gradient(to bottom right, #1c1c24, #2c2b35);
    color: #eaeaea;
    padding: 80px 20px;
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    /* Optional starry texture */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #c8bfae;
}

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

.nav-links li a {
    text-decoration: none;
    color: #aab0bb;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background: #cbbfa4;
    color: #0e0e12;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e0d7be;
}

.plans,
.features,
.testimonials,
.faq {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    color: #d3cab4;
}

.plan-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan {
    background: #1a1a20;
    border: 1px solid #333;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    color: #e0e0e0;
}

.plan.featured {
    border: 2px solid #cbbfa4;
    background: #222228;
}

.plan .price {
    font-size: 22px;
    margin: 10px 0;
    color: #ded6be;
}

.cta-secondary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #cbbfa4;
    color: #0e0e12;
    text-decoration: none;
    border-radius: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature {
    background: #1c1c22;
    padding: 20px;
    border-radius: 6px;
}

.testimonial {
    background: #1b1b21;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-left: 4px solid #cbbfa4;
    font-style: italic;
}

.faq-item {
    margin: 20px 0;
}

.footer {
    background: #121218;
    color: #888;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}