:root {
    --primary-color: #2E7D32; /* Deep, corporate green */
    --accent-color: #43A047; /* Slightly lighter green for hovers */
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    max-height: 60px;
    max-width: 240px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Main Content */
main {
    margin-top: 80px; /* Offset fixed header */
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.intro-section h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.2;
}

.intro-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Split Links Section */
.split-links {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .split-links {
        flex-direction: row;
        height: calc(100vh - 80px); /* Fill remaining height */
    }
}

.split-link {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    z-index: 1;
}

.split-link:hover::before {
    background: rgba(46, 125, 50, 0.7); /* Green tint on hover */
}

.split-link .overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
    transition: var(--transition);
    transform: translateY(0);
}

.split-link:hover .overlay {
    transform: translateY(-5px);
}

.split-link h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    display: inline-block;
    padding-bottom: 10px;
}

.split-link p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: #222;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.contact-info a {
    color: var(--white);
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 80px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        border-top: 1px solid #eee;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .split-links {
        height: 800px;
    }

    .split-link {
        height: 50%; /* Each takes half of the 800px container */
    }

    .intro-section h1 {
        font-size: 1.8rem;
    }

    .split-link h2 {
        font-size: 1.8rem;
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Article Page Styling */
/* Replaced .article-header with .page-header below */

.article-content {
    padding: 60px 0;
}

.article-section {
    margin-bottom: 60px;
}

.article-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.article-section h3 {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 500;
}

.article-section p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.partners-section {
    background-color: var(--light-gray);
    padding: 60px 40px;
    margin-top: 40px;
    border-radius: 4px;
}

.cta-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 60px;
}

.cta-box h2 {
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding-bottom: 10px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
}

/* New Page Header Styling */
.page-header {
    background-color: var(--light-gray); /* Fallback */
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.page-header .content-wrapper {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

/* Specific adjustments for Contact page */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-details {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p, .contact-item a {
    font-size: 1.1rem;
    color: #555;
}

.contact-item a:hover {
    color: var(--primary-color);
}
