/* ================================
   GLOBAL PAGE STYLING
================================ */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

/* ================================
   HEADER
================================ */

header {
    background: #0b7a3b;
    color: #fff;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

header h1 {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 700;
}

.home-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
}

.home-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ================================
   MAIN CONTENT SECTION
================================ */

section {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px 20px 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

section p {
    margin-bottom: 14px;
    font-size: 1rem;
}

h2 {
    margin-top: 30px;
    margin-bottom: 12px;
    color: #0b7a3b;
    font-size: 1.5rem;
    font-weight: 700;
}

ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 6px;
    font-size: 1rem;
}

/* ================================
   CTA BUTTON
================================ */

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #0b7a3b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

/* ================================
   INTERNAL LINKS SECTION
================================ */

.internal-links {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.internal-links h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #0b7a3b;
}

.internal-links ul {
    list-style: none;
    padding-left: 0;
}

.internal-links li {
    margin-bottom: 8px;
}

.internal-links a {
    color: #0b7a3b;
    text-decoration: none;
    font-weight: 500;
}

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

/* ================================
   FOOTER
================================ */

footer {
    text-align: center;
    padding: 18px;
    font-size: 0.9rem;
    color: #666;
    background: #f0f0f0;
    margin-top: 40px;
}

/* ================================
   CONTACT SECTION — PREMIUM UX
================================ */

.section.contact {
    padding: 70px 0;
    background: #f7f7f7;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 1.9rem;
    color: #0b7a3b;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #444;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-list a {
    color: #0b7a3b;
    text-decoration: none;
    font-weight: 600;
}

.contact-list a:hover {
    color: #d4af37;
}

/* Form */
.contact-form-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0b7a3b;
    outline: none;
}

.btn.primary.full {
    width: 100%;
    background: #0b7a3b;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn.primary.full:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

.form-status {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #0b7a3b;
}

/* Mobile */
@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
    header h1 {
        font-size: 1.6rem;
    }

    section {
        padding: 20px 15px 35px;
    }

    h2 {
        font-size: 1.3rem;
    }

    .cta {
        width: 100%;
        text-align: center;
    }
}
