.features-section {
    position: relative;
    width: 100%;
    background-color: var(--surface);
    padding: 80px 0;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-intro {
    text-align: center;
    margin-bottom: 64px;
    width: 100%;
}

.features-intro-title {
    margin-bottom: 24px;
}

.features-intro-description {
    max-width: 800px;
    margin: 0 auto;
}

/* Features Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 100%;
}

/* Feature Card */
.feature-card {
    background-color: var(--surface-container-high);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                inset 0 -4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Üst bant için yeni eklenen kod */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--secondary-container);
    border-radius: 16px 16px 0 0;
}

.feature-card .feature-icon-container {
    width: 100px;
    height: 100px;
    background-color: var(--secondary);
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    align-self: center;
}

.feature-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.feature-title {
    color: var(--on-surface-variant);
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}

.feature-subtitle {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: var(--end-note-size);
    line-height: var(--end-note-line-height);
    letter-spacing: var(--end-note-regular-spacing);
    font-weight: var(--font-regular);
    width: 100%;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    color: var(--on-surface);
    text-align: left;
    list-style: none;
}

.feature-list li:before {
    content: "";
}

.feature-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0;
    }

    .features-container {
        padding: 0 16px;
    }
}

@media screen and (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-container {
        padding: 0 16px;
    }

    .features-intro {
        margin-bottom: 48px;
        width: 100%;
        padding: 0;
    }

    .features-intro-description {
        padding: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 24px;
    }

    .feature-card {
        width: 100%;
        margin: 0;
    }
}