/* Reset and base 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;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    flex: 1;
    width: 100%;
}

section {
    margin-bottom: 3rem;
}

section:first-child {
    margin-top: 0;
}

.hero {
    text-align: center;
    padding: 8rem 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 800;
}

.hero p {
    font-size: 3rem;
    color: #2563eb;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
}

.hero-mission {
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-mission .tagline {
    font-size: 3rem;
    color: #1e293b;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 3rem;
}

.hero-mission .mission-text {
    font-size: 1.5rem;
    line-height: 2;
    color: #475569;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: 4rem 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.about p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
}

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

.team-member {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.team-member:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
}

.team-member:hover img {
    display: none;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.team-member .title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-member .bio {
    color: #64748b;
    line-height: 1.6;
    display: none;
}

.team-member:hover .bio {
    display: block;
}

/* Footer */
footer {
    background-color: #1e293b;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .logo img {
        height: 48px;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
    }
}
