.features {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
    color: #333;
}

.features h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.decor-line {
    width: 50px;
    height: 3px;
    background: #8000FF;
    margin: 0 auto 30px;
}

.description {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.feature-item {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-item .icon img {
    height: 200px;
    margin-bottom: 15px;
    border-radius: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #8000FF;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.conclusion {
    margin-top: 50px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.conclusion-graphic {
    margin-bottom: 20px;
}

.conclusion-graphic img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.conclusion p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}
