/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

main {
    padding: 2rem;
}

/* Header and Navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a.active {
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-color: #f4f4f4;
    padding: 2rem;
    text-align: center;
}

/* Buttons */
.cta-button,
.secondary-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
}

.secondary-button {
    background-color: #6c757d;
    color: #fff;
}

/* Features and Support */
.features-preview ul,
.feature,
.pricing-plan ul,
.support-options {
    margin-bottom: 1rem;
}

/* Pricing Plans */
.pricing-plan {
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
}

.pricing-plan.featured {
    background-color: #f8f9fa;
}

.pricing-notice {
    background-color: #fffbea;
    border: 1px solid #ffeeba;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.price-note {
    font-size: 0.8em;
    color: #666;
}

/* FAQ Section */
.pricing-faq {
    margin-top: 40px;
}

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

.faq-item h3 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header {
        padding: 0.5rem;
    }

    nav ul li {
        display: block;
        margin-bottom: 0.5rem;
    }

    .hero {
        padding: 1rem;
    }

    .pricing-plan {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .cta-button,
    .secondary-button {
        display: block;
        width: 100%;
        text-align: center;
    }

    footer {
        position: static;
    }
}