* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto';
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.page-header {
    background:linear-gradient(135deg, #05915b 0%, #017e31 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.page-header h1{
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p{
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.container {
    margin: 0 auto;
    padding: 2rem;
}

.toc{
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 1rem;
}

.toc h3{
    color: #040b13;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2c2015;
    display: inline-block;
}

.toc-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;    
}

.toc a{
    text-decoration: none;
    color: #040b13;
    display: block;
    transition: all 0.3s ease;
}

.toc a:hover {
    background-color: #f0f0f0;
    color: #2b251f;
    padding-left: 1rem;
}

.content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    scroll-margin-top: 2rem;
}

.content-section h2{
    color: #041527;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2c2015;
}

.content-section h3{
    color: #076924;
    margin: 1rem 0 0.5rem 0;   
}

.content-section ul, .content-section ol {
  margin: 1rem 0 1rem 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background-color: #eaffe7;
    border-left: 4px solid #140e08;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.highlight-box h4 {
    color: #18a80a;
    margin-bottom: 0.5rem;
}

.download-section{
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #078a42;
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.btn-download:hover {
    background-color: #1d1c1b;
}

.report-section {
    background-color: #8d918e;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #04611c;
}

.report-section h3{
    color: #353331;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    display: inline-block;
}

.contact-info p {
    margin: 0.5rem 0;
    text-decoration: none;
}

.contact-info a {
    color: #000;
    text-decoration: none;

}

.page-footer {
    background-color: #3f4449;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #078a42;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    opacity: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


.back-to-top:hover {
    background-color: #1c2229;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    .content-section {
        padding: 1.5rem;
    }
    .page-header h1 {
       font-size: 1.8rem;
    }
    .toc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px){
    .report-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}