.info-section {
    position: relative;
    color: white;
    padding: 60px 30px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0,0,0,0.6);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    min-height: 380px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.info-section:hover {
    transform: translateY(-5px);
}
.info-section h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #23acfc;
}
.info-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    color: #fff;
}
.info-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}