/* General Styles for the Section */
section#how-it-works {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto; /* Center the section */
    max-width: 600px; /* Limit width for better readability */
}

/* Headings */
section#how-it-works h2 {
    text-align: center;
    color: #444; /* Darker color for the heading */
    font-size: 2em; /* Increase font size for prominence */
    margin-bottom: 15px; /* Space below the heading */
}

/* Paragraph Styles */
section#how-it-works p {
    color: #333; /* Text color */
    line-height: 1.6; /* Improve line spacing */
    margin-bottom: 15px; /* Space between paragraphs */
}

/* Ordered List Styles */
section#how-it-works ul {
    margin-left: 20px; /* Indent the list */
    color: #555; /* Slightly lighter color for the list */
}

/* List Item Styles */
section#how-it-works li {
    margin-bottom: 10px; /* Space between list items */
    position: relative; /* Positioning for bullet styles */
}

/* Custom Bullet Points */
section#how-it-works li::before {
    content: '✔️'; /* Custom bullet character */
    position: absolute;
    left: -25px; /* Space the bullet from the text */
    color: #4CAF50; /* Green color for the bullet */
    font-size: 1.2em; /* Size of the bullet */
}
