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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

/* HEADER */
.greenThinq {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 3px solid #f39c12;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

.greenThinq a {
    display: inline-block;
}

.chmlogo {
    height: 60px;
    width: auto;
}

.greenThinq p {
    color: white !important;
    margin: 0;
    font-size: 0.95rem;
}

/* NAVIGATION */
.nav {
    background: white;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    justify-content: center;
}

.nav a {
    padding: 0.7rem 1.2rem;
    background: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:hover {
    background: #e67e22;
}

/* CONTAINER */
.mainDiv {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: block !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    flex-direction: initial !important;
    justify-content: initial !important;
    align-items: initial !important;
    width: 100% !important;
}

.section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* TYPOGRAPHY */
h1 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid #f39c12;
    padding-bottom: 0.5rem;
}

h2 {
    color: #8b4513;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

h3 {
    color: #2c5f2d;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: normal !important;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* BOXES */
.contact-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-left: 4px solid #f39c12;
    margin: 1rem 0;
    border-radius: 4px;
}

.contact-box strong {
    color: #8b4513;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: #e8f5e9;
    padding: 1.5rem;
    border-left: 4px solid #2c5f2d;
    margin: 1rem 0;
    border-radius: 4px;
}

.warning-box {
    background: #fff3e0;
    padding: 1.5rem;
    border-left: 4px solid #f39c12;
    margin: 1rem 0;
    border-radius: 4px;
}

.highlight-box p,
.warning-box p {
    margin-bottom: 0.5rem;
}

/* FOOTER */
.footer {
    background: #2c5f2d;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer > div {
    margin: 1rem 0;
}

.footer a {
    color: #f39c12;
    text-decoration: none;
    margin: 0 1rem;
    display: inline-block;
}

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

.footer p {
    color: white;
    margin: 0;
}

.footer-separator {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* LINKS */
a {
    color: #f39c12;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .nav {
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 1.5rem;
    }
    
    .footer a {
        display: block;
        margin: 0.5rem 0;
    }
}