:root {
    --navy: #1B1464;
    --dark-green: #3a5a40;
    --light-green: #59C9BB;
    --light-green-alt: #5FD89D;
    --light-gray: #f5f7f9;
    --lighter-gray: #e2e8f0;
    --dark-gray: #5a6774;
}

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

html, body {
    font-family: 'Source Sans 3', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

.text-navy {
    color: var(--navy);
}

.text-green {
    color: var(--dark-green);
}

.bg-navy {
    background-color: var(--navy);
}

.bg-green {
    background-color: var(--dark-green);
}

.hover\:text-green:hover {
    color: var(--dark-green);
}

.hover\:bg-green:hover {
    background-color: var(--dark-green);
}

.focus\:border-green:focus {
    border-color: var(--dark-green);
}

a {
    text-decoration: none;
}

button {
    font-family: 'Source Sans 3', sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--dark-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

/* Container max width */
.container {
    max-width: 1200px;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Form inputs */
input, textarea, select {
    font-family: 'Source Sans 3', sans-serif;
}

input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(58, 90, 64, 0.1);
}

/* Transitions */
.transition {
    transition: all 0.3s ease;
}

/* Card hover effect */
.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button styles */
button, a[class*="px-8 py-3 bg-"] {
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover, a[class*="px-8 py-3 bg-"]:hover {
    transform: translateY(-1px);
}

/* Hero section */
.hero-section {
    position: relative;
    min-height: 500px;
}

/* Mobile menu animation */
#mobileMenu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Link styles */
a:not([class]) {
    color: var(--dark-green);
}

a:not([class]):hover {
    text-decoration: underline;
}

/* Section spacing */
section {
    overflow: hidden;
}

/* Responsive grid */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }
}

/* Print styles */
@media print {
    header, footer, .no-print {
        display: none;
    }
}
