/* Base Styles */
:root {
    --primary-blue: #1A365D; /* Dark blue from logo */
    --primary-green: #2F855A; /* Green from logo */
    --light-bg: #F7FAFC;
    --text-dark: #2D3748;
    --text-light: #718096;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light-bg);
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

p, ul {
    margin-bottom: 1.5rem;
}

ul {
    padding-left: 20px;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 2px solid var(--primary-green);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
}

.tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 1px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--primary-green);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* Hero */
.hero {
    background-color: var(--primary-blue);
    color: white;
    padding: 3rem 0; /* <-- Reduced padding */
    text-align: center;
}

.hero h2 {
    color: white;
    font-size: 2.5rem;
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-green);
}

/* Footer */
.site-footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 3rem 0 1.5rem 0; /* Reduced bottom padding slightly */
}

.site-footer h2 {
    color: white;
    margin-bottom: 0.2rem; /* Tightens space under the logo text */
}

.site-footer a {
    color: var(--primary-green);
    text-decoration: none;
}

/* Fixes the stretched look by overriding the global p margin */
.site-footer p {
    margin-bottom: 0.5rem; 
}

/* Side-by-side layout for desktop */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 2rem;
    gap: 2rem;
}

.tagline-footer {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #CBD5E0; /* Subtle light grey */
}

/* Subtle separator line for the copyright area */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #CBD5E0;
}
/* Logo Styling */
.site-logo {
    max-width: 250px; /* This scales your large 1867x894 image down to a sensible header size */
    height: auto;
    display: block;
}