.blog {
    padding: 60px 0 !important;
    background-color: #f9f9f9;
    text-align: center;
}

.blog-details {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
}

.title {
    font-size: 32px;
    font-weight: bold;
    margin: 20px 0;
    color: #333;
}

.content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.industries-container {
    display: flex;
    width: 98%; /* Full width for the container */
    justify-content: space-between; /* Spread columns apart */
    
}

.industries-column {
    flex: 0 0 50%; /* 50% width for each column */
    max-width: 48%; /* Ensure maximum width is 50% */
    background-color: #f0f4f8;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.industries-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.content h3 {
    font-size: 28px;
    margin-top: 20px;
    color: #007bff;
    text-transform: uppercase;
}

.content ul {
    list-style-type: disc;
    margin-left: 20px;
    text-align: left;
}

.content p {
    margin-top: 15px;
    font-size: 18px;
    color: #555;
}

@media (max-width: 768px) {
    .industries-column {
        flex: 0 0 100%; /* Full width on smaller screens */
        max-width: 100%; /* Ensure maximum width is 100% */
    }
}
