/* Common Facts Section Styles */

#common-facts {
    padding: 80px 0;
    background-color: #f9f9f9;
}

#common-facts .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.common-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.common-fact .h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 15px 0;
    color: #333;
}

.common-fact .p3 {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.common-fact svg {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.common-fact:hover svg {
    transform: scale(1.05);
}

/* SVG Styling */
.style-svg {
    width: 100px !important;
    height: 100px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

img.style-svg {
    width: 100px !important;
    height: 100px !important;
    display: block;
    margin: 0 auto;
}

