/* Classic Styling for Info Cards Section */
#info-cards {
    padding: 40px 0;
    background-color: #f4f4f4; /* Soft background color */
    text-align: center;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.info-card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 22%;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.info-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-description {
    font-family: 'Arial', sans-serif;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Adjustments for mobile responsiveness */
@media screen and (max-width: 768px) {
    .info-card {
        width: 45%; /* Smaller width on tablets */
    }
}

@media screen and (max-width: 480px) {
    .info-card {
        width: 90%; /* Even smaller width on mobile */
    }
}
