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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #22c55e;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(to bottom, white, #dcfce7);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #22c55e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #16a34a;
}

/* Grid Sections */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cards */
.card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.process-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.process-step {
    width: 100%;
    max-width: 400px;
    min-height: 200px;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #22c55e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.process-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.process-bottom {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-bottom {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        min-height: 180px;
    }
}

/* Animation for hover effect */
.process-step {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Who We Are Section */
.who-we-are {
    padding: 5rem 2rem;
}

.founder-card {
    text-align: center;
    padding: 2rem;
}

.founder-card img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.role {
    color: #22c55e;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 120px;
}

.submit-button {
    background-color: #22c55e;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

.submit-button:hover {
    background-color: #16a34a;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    background-color: white;
    border-top: 1px solid #ddd;
}

/* Section Headers */
h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .process-bottom {
        grid-template-columns: 1fr;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}
/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    background-color: white;
    border-top: 1px solid #ddd;
}

/* Section Headers */
h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .process-bottom {
        grid-template-columns: 1fr;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}

