* {
    box-sizing: border-box;
    margin: 0;
}

.aboutUs-section {
    position: relative;
    height: 400px;
    background: url('../img/aboutOG.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    /*  justify-content: center;*/
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

    /* Overlay */
    .aboutUs-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* dark semi-transparent overlay */
        z-index: 0;
    }

    .aboutUs-section span {
        position: relative;
        padding: 60px 0 0 40px;
        font-family: var(--heading-font);
        color: #fff;
        font-size: 2.5rem;
        z-index: 1;
    }
.aboutUs-content{
    padding: 50px;
}
.aboutUs-content h2 {
    font-size: 34px;
    color: #0094ff;
    line-height: 2.4;
}
.aboutUs-content p {
    font-size: 18px;
    font-family: var(--other-font);
    line-height: 1.6;
}
.aboutUs {
    padding: 60px 20px;
    font-family: var(--body-font);
    max-width: 1200px;
    border-top: 10px solid #0094ff;
    margin: auto;
}

.vision-section {
/*    background-color: #1e1e1e;*/
/*    padding: 30px;*/
/*    margin-bottom: 20px;*/
/*    border-top: 8px;?*/
/*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);*/
}
.vision-span {
    color: #0094ff;
}

.vision-section h2 {
  font-size: 34px;
  color: #19194f;
  margin-bottom: 15px;
/*  line-height: 2;*/
}

.vision-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.mission-values {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.mission {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #0094ff;
}
.values{
    background: #19194f;
}
.yellow {
    color: #ffd700;
}


.mission, .values {
  flex: 1;
  min-width: 300px;
/*  background: #fff;*/
  padding: 40px 30px;
  border-radius: 6px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mission h3, .values h3{
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  text-decoration: underline;
}
.int{
    font-size: 25px;
    font-weight: bold;
}
.mission-img{
    width: 100%;
    height: 240px;
    border-radius: 10px;
}

.mission ul, .values ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style-type: none;
    padding-left: 20px;
    /*  color: #333;*/
}

.mission ul li, .values ul li {
  margin-bottom: 10px;
  font-size: 20px;  
  line-height: 1.6;
  border-bottom: 0.5px solid #fff;
/*  text-decoration: none;*/

}

