/* section-features styles */
.section-features {
    padding: 60px 0; /* Example padding */
    background-color: #f8f9fa; /* Light background for the section */
}

.section-features-contents {
    max-width: 1200px; /* Max width for content */
    margin: 0 auto; /* Center content */
    padding: 0 15px; /* Horizontal padding */
}

/* Card specific styles */
.section-features .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.section-features .card:hover {
    transform: translateY(-5px);
}

.section-features .card-body {
    padding: 30px;
}

/* Circle icon wrapper styles */
.circle-wrapper {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e9ecef; /* Light grey background for circle */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.circle-content svg {
    color: #007bff; /* Primary blue color for icon */
    font-size: 32px; /* Size of the SVG icon */
}

.section-features-contents h2{
    text-align: center;
}

.section-features h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #343a40;
}

.section-features p {
    font-size: 1rem;
    color: #6c757d;
}

.section-features-contents{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}