/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #4a5568;
    text-decoration: none;
}

nav ul li a:hover {
    color: #48bb78;
}

/* Hero Section */
.hero {
    background-color: #f0fff4;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2f855a;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #48bb78;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #38a169;
}

/* Problem Section */
.problem {
    background-color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat {
    background-color: #f0fff4;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

/* Solution Section */
.solution {
    background-color: #f7fafc;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Impact Section */
.impact {
    background-color: #fff;
    padding: 80px 0;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.milestone {
    background-color: #f0fff4;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

/* Technology Section */
.technology {
    background-color: #f7fafc;
    padding: 80px 0;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tech-category {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Example Images Section */
.example-images {
    background-color: #fff;
    padding: 80px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.image-item {
    text-align: center;
}

.image-item img {
    max-width: 100%;
    border-radius: 4px;
}

/* AI Analysis Section */
.ai-analysis {
    background-color: #f7fafc;
    padding: 80px 0;
}

#ai-analysis-form {
    max-width: 400px;
    margin: 0 auto;
}

/* CTA Section */
.cta {
    background-color: #48bb78;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.cta-button.secondary {
    background-color: #fff;
    color: #48bb78;
}

/* Footer Styles */
footer {
    background-color: #2d3748;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    text-decoration: underline;
}