/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #007BFF;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #FFC107;
    color: #333;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

#benefits {
    background: #f4f4f4;
    padding: 40px 0;
    text-align: center;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    display: none;
    padding: 20px;
}

.carousel-item.active {
    display: block;
}

.carousel-item i {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 10px;
}

#features {
    padding: 40px 0;
    text-align: center;
}

#features h2 {
    margin-bottom: 20px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    width: 45%;
    background: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
}

.feature-item i {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

#compliance {
    background: #e2e2e2;
    padding: 40px 0;
    text-align: center;
}

#testimonials {
    padding: 40px 0;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    padding: 20px;
}

.testimonial-item.active {
    display: block;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 10px;
}

#special-offer {
    background: #007BFF;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

#contact {
    padding: 40px 0;
    text-align: center;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
}

#contact .privacy-note {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (min-width: 600px) {
    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-item {
        width: 22%;
    }
}
