.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid #e4eaf2;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 100, 175, 0.2);
}
.info-icon {
    font-size: 30px;
    color: #0f64af;
    margin-bottom: 10px;
}
.info-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.info-value {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    word-wrap: break-word;
}

.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;
        position: relative;
        color: white;
        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;
    }
    .info-section p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 0;
    }
    .info-icon {
        font-size: 40px;
        color: #fff;
        margin-bottom: 15px;
    }
    
    