/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #4caf50, #81c784);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
}

.cta-button:hover {
    background: #555;
}

/* Benefits Section */
.benefits {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 40px;
}

.benefit-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.benefit {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.benefit img {
    max-width: 100px;
    margin-bottom: 20px;
}

.benefit h3 {
    margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 50px 20px;
    text-align: center;
}

.how-it-works .steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step span {
    background: #4caf50;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Features Section */
.features {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.features .feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, #4caf50, #81c784);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}
