.about-image-container{
    background-image: url("../images/view1.jpg");
    height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: #FEFAE0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-image-text h1{
    text-align: center; 
    margin-bottom: 10px;
}
.about-image-text p{
    padding: 10px;
}

.about-container ul{
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    
}
.about-container a{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #2C3E50;
    transition: 0.3s;
    padding-right: 5px;
    width: 150px;
    height: 100px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    align-items: center;
    justify-content: center;
}
.about-container a:hover{
    text-decoration: none;
    color: #D4A373;
    background-color: #ffffff;
    transform: translateY(-5px);
}
.about-container i{
    margin-bottom: 10px;
}