.category {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category h1 {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 2rem;
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.nature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nature-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    gap: 1rem;
}

.nature-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.nature-item .content {
    flex: 1;
}

.nature-item h3 {
    color: #4CAF50;
    margin: 0 0 0.5rem 0;
}

.nature-item p {
    margin: 0 0 1rem 0;
    color: #666;
}

.nature-item a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.content p>a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #4caf50;
    padding: 2px 5px;
    border-radius: 6px;
}
.nature-item a:hover {
    text-decoration: underline;
}

.nature-hero {
    background-image: url('../img/banner/banner1.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.nature-hero .hero-content {
    position: relative;
    z-index: 1;
}

.nature-hero .hero-content h1 {
    font-size: 3.5rem;
    margin: 0 0 1rem 0;
}

.nature-hero .hero-content p {
    font-size: 1.5rem;
}