/* Mission Statement Section */
.mission-statement-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background image as HTML element */
.mission-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Overlay */
.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
    z-index: 1;
}

/* Content */
.mission-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

.mission-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
  
}

.mission-points {
    list-style: none;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
      padding-left: 0px;
}

.mission-point {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
   
    line-height: 1.5;
}

.director-info {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 40px;
    margin-top: 40px;
}

.director-name {
    font-size: 18px;
    font-weight: 600;
    
}

.director-title {
    font-size: 18px;
    font-weight: 400;

 ;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .mission-statement-section {
        min-height: 80vh;
    }
    
    .mission-content {
        padding: 60px 20px;
    }
    
    .mission-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .mission-point {
        margin-bottom: 20px;
    }
    
    .director-info {
        padding-top: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .mission-content {
        padding: 40px 15px;
    }
    
    .mission-point {
        margin-bottom: 15px;
        
    }
}