.environment-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 8px;
}

.environment-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: start;
}

.environment-section p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: start;
}

.tab-container {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #dcdcdc;
    margin-bottom: 20px;
}

.tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s;
}

.tab-button.active {
    border-color: #84bd41;
}

.tab-panel {
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid #dcdcdc;
    min-height: 35vh;
}

.tab-panel ul {
    padding-left: 20px;
}

.tab-panel li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .environment-section { padding: 24px 16px; }
    .tab-container { flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
    .tab-button { padding: 10px 12px; font-size: 14px; }
    .tab-panel { min-height: auto; }
}