/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    font-size: 18px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background: linear-gradient(to right, #6a1b9a, #8e24aa);
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.header-image {
    height: 100px;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}
.cta-button a {
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background: #d4af37;
    color: #fff;
}

/* Section Styles */
section {
    padding: 2rem 0;
    text-align: center;
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-image {
    width: 75%;
    margin: 1rem 0;
}

/* About Section */
.about {
    background: #d1c4e9;
}

/* Benefits Section */
.benefits {
    background: #f3e5f5;
}

.benefits ul {
    list-style-type: disc;
    text-align: left;
    margin: 1rem auto;
    display: inline-block;
}

.benefits li {
    margin-bottom: 0.5rem;
}

/* How to Mine Section */
.how-to-mine {
    background: #e8eaf6;

}

/* Earn Money Section */
.earn-money {
    background: #ede7f6;
}

/* How to Register Section */
.how-to-register {
    background: #f4e5ff;
}

.how-to-register ol {
    text-align: left;
    max-width: 600px;
    margin: 1rem auto;
}

.how-to-register li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #212121;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

.footer-image {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-button {
        width: 100%;
    }

    .benefits ul, .how-to-register ol {
        text-align: justify;
    }
}
