body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

.navbar {
    background-color: #050505;
}

.hero-section {
    height: 100vh;
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 75%);
    /* Adjust the color and opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}



.btn-main {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.how-it-works {
    padding: 50px 0;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.how-it-works .step {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step img {
    width: 80px;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}