/* Reset some default styles */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Apply a background color to the entire body */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5; /* Light gray background */
}

/* Container for content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #007bff; /* Professional blue header */
    color: #fff;
    padding: 1rem 0;
}

/* Navigation styles */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* How We Work section styles */
.how-we-work {
    background-color: #fff; /* White background */
    padding: 4rem 0;
}

.how-we-work h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.how-we-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
}

.how-we-work-step {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9; /* Light gray background for steps */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.how-we-work-step h3 {
    font-size: 1.5rem;
    color: #007bff; /* Professional blue color for step headings */
    margin-bottom: 15px;
}

.how-we-work-step p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.2rem;
}
