/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Monospace', Arial, sans-serif; /* Updated font to Monospace */
    color: #fff;
    background-color: #161616; /* Updated background color */
}

/* Header Styles */
.header {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    width: 150px;
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.header nav ul li a:hover {
    text-decoration: underline;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 20px;
    max-width: 1200px; /* Wider container for full-width steps */
    margin: 0 auto;
    text-align: center;
}

.how-it-works h1 {
    font-size: 2.5rem;
    color: #fff;
}

.how-it-works p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ccc; /* Lighter text color for description */
}

/* Steps Styling - Horizontal Layout with Increased Spacing */
.steps {
    display: flex;
    gap: 40px; /* Increased space between steps */
    justify-content: center;
    margin-top: 40px;
}

.step {
    flex: 1 1 0; /* Forces each step to take equal width */
    max-width: 300px;
    padding: 20px;
    border: 2px solid #444; /* Darker border to match charcoal background */
    border-radius: 8px;
    background-color: #555; /* Slightly lighter charcoal background for contrast */
    transition: border-color 0.3s ease;
    text-align: center;
    margin-bottom: 30px; /* Adds extra bottom margin for more spacing */
}

.step:hover {
    border-color: #6A0DAD; /* Optional purple highlight on hover */
}

.step-image {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.step h2 {
    font-size: 1.8rem;
    color: #fff;
}

.step p {
    font-size: 1rem;
    margin-top: 10px;
    color: #ddd; /* Lighter color for text */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .steps {
        flex-direction: column; /* Stack steps vertically on small screens */
        gap: 20px; /* Smaller gap on mobile */
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}



