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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #d4e8d4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.nav-about {
    position: fixed;
    top: 40px;
    right: 40px;
}

.nav-about a {
    color: #2d5016;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-about a:hover {
    text-decoration: underline;
}

.caterpillar {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    color: #2d5016;
    margin-bottom: 16px;
    font-weight: 600;
}

.tagline {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2d5016;
    color: #d4e8d4;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3d6822;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #d4e8d4;
    min-height: 100vh;
}

.nav-home {
    position: fixed;
    top: 40px;
    right: 40px;
}

.nav-home a {
    color: #2d5016;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-home a:hover {
    text-decoration: underline;
}

.about-title {
    text-align: center;
    font-size: 3rem;
    color: #2d5016;
    margin-bottom: 40px;
    font-weight: 600;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro p {
    color: #2d5016;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 60px;
    font-weight: 600;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

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

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background-color: #2d5016;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4e8d4;
    font-size: 1.5rem;
    font-weight: 600;
    border: 4px solid #2d5016;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid #2d5016;
}

.member-name {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    font-size: 1.1rem;
    color: #6b4423;
    margin-bottom: 16px;
    font-weight: 500;
}

.member-bio {
    color: #2d5016;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .caterpillar svg {
        width: 90px;
        height: 45px;
    }

    .about-title {
        font-size: 2rem;
    }

    .team-title {
        font-size: 1.8rem;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-placeholder,
    .member-photo {
        width: 150px;
        height: 150px;
    }

    .member-name {
        font-size: 1.5rem;
    }
}
