/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #1A1A1A;
    background-color: #F5F5F5;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* Links */
a {
    color: #2E7D32;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1B5E20;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2E7D32;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #1B5E20;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #2E7D32;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Flexbox */
.flex {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Navigation */
nav {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
}

.logo-highlight {
    color: #2E7D32;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    color: #1A1A1A;
}

.nav-link:hover {
    color: #2E7D32;
}

.nav-link.active {
    color: #2E7D32;
    border-bottom: 2px solid #2E7D32;
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, #115e59, #2E7D32);
    color: #FFFFFF;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.25rem;
}

.hero-image {
    margin-top: 2rem;
}

.hero-image img {
    max-width: 600px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #FFFFFF;
}

/* Cards */
.card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

/* Lists */
.list {
    list-style-type: disc;
    padding-left: 1.25rem;
}

.list li {
    color: #4B5563;
    margin-bottom: 0.5rem;
}

/* Icons */
.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.logo-small {
    max-height: 48px;
    margin: 1rem auto;
}

/* Forms */
.form-container {
    max-width: 400px;
    margin: 0 auto;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    font-size: 1rem;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
}

th {
    background-color: #2E7D32;
    color: #FFFFFF;
}

td {
    border-top: 1px solid #D1D5DB;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 3rem 0;
}

.footer a {
    color: #D1D5DB;
}

.footer a:hover {
    color: #FFFFFF;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* FAQs */
.faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .flex {
        flex-direction: column;
    }
}