:root {
    --primary-color: #016701; /* Exact logo green */
    --text-color: #333;
    --background-color: #016701; /* Exact logo green for background */
    --header-height: 80px;
    --footer-height: 60px;
    --section-bg: #fff;
    --section-alt-bg: #f3f6f9;
}

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Header Styles */
.header {
    height: var(--header-height);
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.site-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.6em;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 60px;
    letter-spacing: 0;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08em;
    transition: color 0.2s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    margin-top: calc(var(--header-height) + 24px);
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer {
    height: var(--footer-height);
    background-color: #fff;
    border-top: 1.5px solid #e0e0e0;
    padding: 0 20px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05em;
    color: #222;
}

.footer-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header-content {
        justify-content: center;
    }
}

/* Home Page Styles */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.featured-content {
    padding: 20px;
}

.featured-content section {
    margin-bottom: 40px;
}

.featured-content h2 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.8em;
}

.video-grid, .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-card, .tool-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.video-card:hover, .tool-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.video-card h3, .tool-card h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.read-more, .tool-link, .main-content button {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    transition: background-color 0.3s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(1,103,1,0.10);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.read-more:hover, .tool-link:hover, .main-content button:hover {
    background-color: #014d01;
    box-shadow: 0 4px 16px rgba(1,103,1,0.18);
}

.section-container {
    background: var(--section-bg);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 24px;
    margin-bottom: 40px;
}

.section-container.alt {
    background: var(--section-alt-bg);
}

.header-icon-link {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.header-icon {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}

.header-icon-link:hover .header-icon {
    transform: scale(1.08) rotate(-3deg);
}

.header-branding {
    background: linear-gradient(90deg, #fff 90%, #f3f6f9 100%);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border: 1.5px solid #e0e0e0;
    padding: 6px 18px 6px 12px;
    display: flex;
    align-items: center;
    margin-right: 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #222;
}

p, li, span, a, label, input, button {
    font-family: 'Montserrat', Arial, sans-serif;
} 