body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title {
    margin: 0;
    font-size: 1.5em;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
}

.nav a:hover {
    text-decoration: underline;
}

.hero, .about, .features, .support-info, .faq, .testimonials {
    padding: 50px 20px;
    background-color: #ecf0f1;
    margin: 20px 0;
}

.hero {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.hero-title {
    margin: 0;
    font-size: 2.5em;
}

.hero-text {
    margin: 20px 0 0 0;
    font-size: 1.2em;
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-text, .feature-description, .faq-answer, .testimonial-text {
    font-size: 1.1em;
    margin: 20px 0;
    text-align: center;
}

.feature, .faq-item, .testimonial {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.feature-title, .faq-question {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.testimonial-author {
    font-size: 1em;
    color: #555;
}

.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}


.faq-item {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.faq-question {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-answer {
    font-size: 1.1em;
    margin: 20px 0;
    text-align: left;
}

.terms {
    padding: 50px 20px;
    background-color: #fff;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.terms h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-top: 30px;
}

.terms p, .terms ul {
    font-size: 1.1em;
    margin: 20px 0;
}

.terms ul {
    padding-left: 20px;
}

.terms li {
    margin-bottom: 10px;
}