/* Reset some default styles */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 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;
}
nav {
    background-color: #007bff; /* Professional blue header */
    color: #fff;
    padding: 1rem 0;
    display: flex;
    justify-content: center; /* Center the navigation horizontally */
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}


/* Hero section styles */
.hero {
    text-align: center;
    padding: 3rem 0;
    background-color: #007bff; /* Professional blue background */
    color: #fff;
}

.hero h1 {
    font-size: 2.5rem; /* Increase the font size */
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem; /* Increase the font size */
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column; /* Adjust the content alignment on mobile */
    align-items: center;
}

.hero-content img {
    margin: 0; /* Remove extra margin on mobile */
    width: 80%; /* Make the logo responsive on mobile */
}

.hero-text {
    font-size: 2rem;
    text-align: center; /* Center align the text on mobile */
}

.cta-button {
    display: inline-block;
    background-color: #ff5733; /* Vibrant orange button */
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff7f4f; /* Hover color */
}

/* 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(1, 1fr); /* Change to single column on mobile */
    gap: 30px;
}

.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;
}

/* About Us section styles with a professional color scheme */
.about-us {
    background-color: #f0f0f0; /* Light gray background */
    padding: 4rem 0;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.about-us h3 {
    font-size: 1.8rem;
    color: #007bff; /* Professional blue color for subheadings */
    margin-top: 20px;
}

.about-us p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin: 20px 0;
}

/* Style for the join button with a professional color */
.join-button {
    display: inline-block;
    background-color: #007bff; /* Professional blue button */
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.join-button:hover {
    background-color: #0056b3; /* Hover color */
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.2rem;
}

/* Original navigation styles for smaller screens (menu button) */

@media (max-width: 768px) {
    nav ul {
        display: flex; /* Display links side by side on mobile */
        position: relative;
        top: 0; /* Adjust the top position based on your header height */
        left: 0;
        right: 0;
        background-color: #007bff;
        z-index: 1;
    }

    nav ul li {
        margin-right: 20px;
    }
    .hero h1 {
    font-size: 2rem; /* Increase the font size */
    margin-bottom: 20px;
    }


}
@media (min-width: 769px) {
    .hero-content img {
        width: 30%; /* Reduce the image size on desktop */
        max-width: none; /* Allow the image to be its original size */
    }
}
