/* Section styling */
.features-section {
    padding: 60px 20px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3a8a;
    font-weight: 700;
}

/* Features list */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
	
	 margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Feature item */
.feature-item {
    display: flex;
    align-items: flex-start;
    background-color: #e5e5e5;
    border-radius: 8px;
    padding: 14px;
    transition: background-color 0.3s ease;
}
/* Feature number */
.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #666;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Feature content */
.feature-content h3 {

	margin: 0;
	padding: 0;
	box-sizing: border-box;

    font-size: 1.2rem;
    color: #434343;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Feature image */
.feature-image {
    margin-top: 40px;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .feature-image {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}