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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 80px 0 60px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 8px;
    display: block;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 18px;
    color: #525252;
    margin-bottom: 8px;
    font-weight: 400;
}

.location {
    font-size: 15px;
    color: #737373;
    margin-bottom: 32px;
}

.header-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.header-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f5f5f5;
    color: #2563EB;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.header-link:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
    color: #1e40af;
}

.social-icon {
    width: 18px;
    height: 18px;
    color: #2563EB;
}

/* Main Content */
main {
    padding: 60px 0 80px;
}

.section {
    margin-bottom: 56px;
}

.section:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

p {
    color: #404040;
    margin-bottom: 16px;
    font-size: 16px;
}

p:last-child {
    margin-bottom: 0;
}

/* Lists */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    color: #404040;
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
}

.bullet-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #737373;
}

.bullet-list li:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: #2563EB;
    text-decoration: underline;
    text-decoration-color: #d4d4d4;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration-color: #2563EB;
    color: #1e40af;
}

.contact-link {
    font-weight: 500;
}

/* Leadership Section */
.leadership {
    background: #fafafa;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.leadership p {
    margin-bottom: 12px;
}

.leadership p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 640px) {
    header {
        padding: 60px 0 40px;
    }

    h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    h2 {
        font-size: 20px;
    }

    main {
        padding: 40px 0 60px;
    }

    .section {
        margin-bottom: 44px;
    }

    .header-links {
        gap: 12px;
    }

    .header-link {
        font-size: 13px;
        padding: 9px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 50px 0 35px;
    }

    h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 15px;
    }

    .location {
        font-size: 14px;
    }

    .logo {
        width: 64px;
        height: 64px;
    }
}
