.about-main {
    width: 100%;
    background-color: #185897;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin-top: 20px;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;


}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    width: 40%;
    min-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card h3 i {
    margin-right: 10px;
    color: #b40000;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding: 20px;
    text-align: justify;
}

a {
    color: #c62828;
    text-decoration: none;
}


.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 20px;
    max-width: 1200px;
    margin: auto;
    gap:60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}

.yellow-circle {
    background: #ffc107;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 10px;
    font-size: 18px;
}

.about-text h1 {
    font-size: 3rem;
    font-weight: 900;
}

.about-text .emoji {
    font-size: 1.5rem;
    margin-left: 10px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-top: 10px;
}

.faq-section {
    background-color: #ffe6e6;
     padding: 40px 20px;  
    /* width: 100%;
    height: 300px;
    padding-top: 50px;  */
  }

  .faq-section-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .faq-left {
    display: flex;
    align-items: center;
    flex: 1 1 300px;
    margin-bottom: 20px;
  }

  .faq-icon {
    width: 70px;
    height: 70px;
    background-color: #8b0000;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
  }

  .faq-text {
    font-size: 1.6rem;
    color: #8b0000;
    font-weight: bold;
  }

  .faq-right {
    flex: 1 1 200px;
    display: flex;
    justify-content: flex-end;
  }

  .faq-button {
    padding: 25px 40px;
    background-color: #0f1d35;
    color: white;
    font-weight: bold;
    border: 3px solid transparent;
    border-image: linear-gradient(to right, red, orange, yellow, green);
    border-image-slice: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .faq-button:hover {
    transform: scale(1.05);
  }
  .middle-section-start{
    width: 100%;
    height:auto;

  }
  .middle-section-start img{
    width: 100%;
    height: auto;
  }

@media (max-width: 768px) {
    .card {
        width: 90%;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding: 5px;
    }

    .yellow-circle {
        width: 180px;
        height: 180px;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text h1 {
    font-size: 1rem;
    
}

    .card p {
        font-size: 1rem;
        
    }

    .card h3 {
        font-size: 1.4rem;
         
}

.faq-section-middle {
    flex-direction: column;
    text-align: center;
  }

  .faq-left {
    justify-content: center;
    margin-bottom: 20px;
    flex: 1 1 157px;
  }

  .faq-right {
    justify-content: center;
    flex: 1 1 90px;
  }
  
  .about-text p {
    
    text-align: justify;
}
  
}