* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
        "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    margin-bottom: 50px;
    border-bottom: 3px solid #148044;
    padding-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #148044;
    margin-bottom: 10px;
}

.meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #9E9E9E;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-label {
    font-weight: 600;
    color: #666666;
}

h2 {
    font-size: 1.5rem;
    color: #148044;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E8F5E9;
}

h3 {
    font-size: 1.1rem;
    color: #0D5A30;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
    line-height: 1.8;
}

strong {
    color: #0D5A30;
    font-weight: 600;
}

em {
    font-style: italic;
    color: #666666;
}

a {
    color: #148044;
    text-decoration: none;
    border-bottom: 1px dotted #148044;
    transition: color 0.2s ease;
}

a:hover {
    color: #0D5A30;
    border-bottom-color: #0D5A30;
}

a:focus {
    outline: 2px solid #148044;
    outline-offset: 2px;
    border-radius: 2px;
}

.important-note {
    background-color: #E8F5E9;
    border-left: 4px solid #148044;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 0.95rem;
}

.important-note strong {
    display: block;
    color: #148044;
    margin-bottom: 8px;
}

.contact-box {
    background-color: #f8f9fa;
    border: 1px solid #E0E0E0;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-box h3 {
    color: #148044;
    margin-top: 0;
}

.contact-box p {
    margin-bottom: 8px;
    text-align: left;
}

footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
    color: #9E9E9E;
    font-size: 0.9rem;
    text-align: center;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #148044;
    border-bottom: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    color: #CCCCCC;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .meta-info {
        flex-direction: column;
        gap: 8px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
    }

    a {
        border: none;
    }

    footer {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
