/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #006600;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    color: #006600;
    border-bottom: 2px solid #006600;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.section ul, .section ol {
    margin-left: 20px;
}

.section ul li, .section ol li {
    margin-bottom: 10px;
}

.dos-donts {
    display: flex;
    justify-content: space-between;
}

.dos, .donts {
    width: 48%;
}

.dos h3 {
    color: #006600;
    margin-bottom: 10px;
}

.donts h3 {
    color: #cc0000;
    margin-bottom: 10px;
}

.dos ul li {
    color: #006600;
}

.dos ol li {
    color: #006600;
}

.donts ul li {
    color: #cc0000;
}

.donts ol li {
    color: #cc0000;
}

/* Responsive Design */
@media (max-width: 600px) {
    .dos-donts {
        flex-direction: column;
    }

    .dos, .donts {
        width: 100%;
        margin-bottom: 20px;
    }
}