/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header Section */
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

header .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

/* Main Image Section */
.main-image {
    background: #eaeaea;
    padding: 40px 0;
    text-align: center;
}

.main-image img {
    width: 80%;
    max-width: 800px;
    height: auto;
}

.main-image .cta {
    margin-top: 20px;
}

.main-image h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.main-image button {
    background-color: #5cb85c;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
}

.main-image button:hover {
    background-color: #4cae4c;
}

/* How it Works Section */
.how-it-works {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.how-it-works ol {
    list-style: none;
    padding-left: 0;
}

.how-it-works li {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    background: #f4f4f4;
    padding: 40px 0;
    text-align: center;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact strong {
    font-size: 1.5rem;
    color: #333;
}

/* Footer Section */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .container {
    width: 80%;
    margin: 0 auto;
}

footer p {
    font-size: 1rem;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .main-image h2 {
        font-size: 1.5rem;
    }

    .how-it-works h2 {
        font-size: 1.8rem;
    }

    .how-it-works li {
        font-size: 1rem;
    }
}
