/* About Page */
.about-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    font-size: 20px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 12px;
}

.about-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding-left: 20px;
    margin-bottom: 8px;
}

.categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.category-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #2d5016;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        padding: 15px;
    }

    .categories-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
