.hero-section {
    background: url('../img/about us landing page.png') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.hero-content {
    z-index: 2;
    color: white;
}

/* Responsive Typography */
.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content h5 {
    font-size: 1.2rem;
}

.hero-content p {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h5 {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h5 {
        font-size: 0.9rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }
}



.our-story {
    padding: 50px 20px;
}
.our-story h2 {
    color: red;
    font-weight: bold;
}
.bold-text {
    font-weight: bold;
}


/* Download Section */
    .download-section {
        background: #f4f4f4;
        padding: 60px 20px;
    }

    .download-title {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .download-text {
        color: red;
        font-weight: bold;
    }

    .app-buttons img {
        width: 150px;
        margin-top: 10px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .download-title {
            text-align: center;
        }
        .download-section img {
            width: 100%;
        }
    }




    /* Subscription Section */
.subscribe-section {
    background: red;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.subscribe-section h2 {
    font-weight: bold;
    font-size: 2rem;
}

.subscribe-input {
    max-width: 400px;
    margin: 20px auto;
}


.section-title {
    color: red;
    font-weight: bold;
  }
  .info-card {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
    height: 100%;
    background-color: #f8f8f8;
  }

  .info-card-text{
    color:#27383F;
  }
  .info-card-h5{
    color:#F00;
  }
  .btn-learn {
    border: 1px solid red;
    color: red;
  }
  .btn-learn:hover {
    background-color: red;
    color: white;
  }

/* Begining of core values */
  .core-values {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
  }
  .core-value-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
   /* join the revolution */
   .about-section {
    background: url('../img/woman.png') no-repeat center center/cover;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
}
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.about-content {
    position: relative;
    z-index: 2;
    background: rgba(241, 1, 1, 0.5);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
}

.built-for{
    background: url('../img/spouses.png') no-repeat center center/cover;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
}