body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

header .logo img {
    margin-right: 10px;
    height: 30px;
}

header nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

header nav a:last-child {
    color: #28a745;
}

header nav a:hover {
    color: #007BFF;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background-color: #fff;
}

.hero .text {
    flex: 1;
    padding-right: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .cta {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.hero .cta:hover {
    background-color: #218838;
}

.hero .image {
    flex: 1;
    text-align: center;
}

.hero .image img {
    max-width: 100%;
    height: auto;
}

.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    gap: 20px;
    background-color: #fff;
}

.split-section .content {
    flex: 1;
    padding-right: 20px;
}

.split-section .content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.split-section .content p {
    color: #666;
    font-size: 1rem;
}

.split-section .image {
    flex: 1;
    text-align: center;
}

.split-section .image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.section {
    padding: 60px 40px;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.features {
    background-color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.features p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.features .feature-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.feature-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

.feature-item img {
    max-width: 50px;
    margin-bottom: 10px;
}
.onboard-section {
padding: 60px 40px;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
}

.onboard-container {
display: flex;
gap: 40px;
max-width: 1200px;
width: 100%;
align-items: center;
}

.image-container {
flex: 1;
text-align: center;
}

.image-container img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-container {
flex: 1;
color: #333;
}

.text-container h2 {
font-size: 2rem;
margin-bottom: 20px;
}

.text-container p {
font-size: 1.1rem;
line-height: 1.6;
color: #666;
}
.tasks-section {
    padding: 60px 40px;
    text-align: center;
    background-color: #fff;
}

.tasks-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tasks-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.tasks-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.task-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.task-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.task-item p {
    color: #666;
    font-size: 0.9rem;
}

.task-item .reward {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: bold;
}

.task-item .deadline {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}

.tasks-section .btn {
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.tasks-section .btn:hover {
    background-color: #555;
}

.cta-section {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    gap: 40px;
}

.cta-section .content {
    flex: 1;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.cta-section .btn {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.cta-section .btn:hover {
    background-color: #218838;
}

.cta-section .image {
    flex: 1;
    text-align: center;
}

.cta-section .image img {
    max-width: 100%;
    height: auto;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #333;
    margin-top: 50px;
    align-self: center;
    gap: 20px;
}

footer .logo {
    font-weight: bold;
    font-size: 1rem;
}

footer nav {
    display: flex;
    gap: 20px;
}

footer nav a {
    text-decoration: none;
    color: #333;
}

footer nav a:last-child {
    color: #28a745;
    font-weight: bold;
}

footer nav a:hover {
    color: #007BFF;
}