/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    color: #00b7ff;
}

/* Header Section */
header {
    background: linear-gradient(to right, #00aaff, #00b7ff);
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.hero-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007acc;
    color: white;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005f99;
}

/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

p {
    font-size: 18px;
}

.steps, .features-list, .use-cases-list, .pricing-plans, .testimonials-list, .faq-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step, .feature, .use-case, .plan, .testimonial, .faq-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

pre, code {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}

/* Features Section */
.features-list .feature h3 {
    color: #007acc;
    font-size: 24px;
    margin-bottom: 15px;
}

/* API Section */
#api pre {
    text-align: left;
    margin-top: 20px;
}

/* Pricing Section */
.pricing-plans .plan {
    width: 300px;
}

.pricing-plans .plan h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonial {
    font-style: italic;
    background-color: #f0f8ff;
}

/* FAQ Section */
.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content ul {
    list-style-type: none;
}

.footer-content ul li {
    display: inline;
    margin: 0 15px;
}

.footer-content ul li a {
    color: #ffffff;
    font-size: 18px;
}

.footer-content ul li a:hover {
    color: #00b7ff;
}

.social-icons a img {
    width: 30px;
    margin: 0 10px;
}

footer p {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps, .features-list, .use-cases-list, .pricing-plans, .testimonials-list, .faq-list {
        flex-direction: column;
    }

    .step, .feature, .use-case, .plan, .testimonial, .faq-item {
        width: 100%;
        margin: 15px 0;
    }
}
