/* General Styling */
.whif-container {
    padding: 30px 0;
}

/* Title Styling */
.whif-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3b86c4;
}

.whif-subtitle {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Image Styling */
.whif-image {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Content Styling */
.whif-content {
    display: flex;
    align-items: center;
}

.whif-details {
    background: transparent; 
    padding: 20px;
    border-radius: 10px;
    color:#4096d9;
}

.whif-details p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whif-container{
        padding: 10px;
    }
    .whif-title {
        font-size: 28px;
    }

    .whif-subtitle {
        font-size: 16px;
    }

    .whif-content {
        flex-direction: column;
        text-align: center;
    }

    .whif-image {
        margin-bottom: 20px;
    }

    .whif-details {
        padding: 10px;
    }
}
