.feature-section {
    padding: 4rem 2rem;
    background-color: #F6F1EB;
    width: 100%;
    overflow-x: hidden;
}

.feature-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-title {
    font-family: 'Didot', serif;
    font-size: 36px;
    color: #2B2B2B;
    text-align: center;
    margin-bottom: 1rem;
}

.feature-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.feature-category {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.feature-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F6F1EB;
}

.category-header i {
    font-size: 20px;
    color: #90684A;
    width: 32px;
    height: 32px;
    background-color: rgba(203, 187, 160, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-header h3 {
    font-family: 'Didot', serif;
    font-size: 20px;
    color: #2B2B2B;
    margin: 0;
    font-weight: 600;
}

.feature-item {
    margin-bottom: 2rem;
}

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

.feature-item h4 {
    font-size: 16px;
    color: #2B2B2B;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Avenir Next', sans-serif;
}

.feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item li {
    color: #666;
    font-size: 14px;
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
}

.feature-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #CBBBA0;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-category {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .feature-section {
        padding: 3rem 1.5rem;
    }

    .feature-title {
        font-size: 28px;
    }

    .feature-subtitle {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .category-header h3 {
        font-size: 18px;
    }

    .feature-item {
        margin-bottom: 1.5rem;
    }

    .feature-item h4 {
        font-size: 15px;
        margin-bottom: 0.5rem;
    }

    .feature-item li {
        font-size: 13px;
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 480px) {
    .feature-section {
        padding: 2rem 1rem;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-subtitle {
        font-size: 15px;
    }

    .feature-category {
        padding: 1.5rem;
    }

    .category-header {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .category-header i {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }

    .category-header h3 {
        font-size: 16px;
    }
}
