
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f7fa;
    color: #1f2933;
    scroll-behavior: smooth;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 1.75rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.header-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand img.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #102a43;
}

nav a {
    color: #4b6a88;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

nav a:first-child {
    margin-left: 0;
}

nav a:hover {
    color: #1d4ed8;
}

main {
    max-width: 1040px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

/* Sections */

section {
    scroll-margin-top: 80px;
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e0ecff 100%);
    padding: 2.5rem 2.25rem;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    margin: 2rem 0 2.25rem;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-copy {
    flex: 1 1 260px;
}

.hero h1 {
    font-size: 1.7rem;
    margin-top: 0.4rem;
    margin-bottom: 0.75rem;
}

.hero p {
    margin: 0.3rem 0 0.6rem;
    line-height: 1.7;
    font-size: 0.98rem;
}

.hero-image-wrap {
    flex: 0 0 260px;
    max-width: 320px;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.section {
    background: #ffffff;
    padding: 1.9rem 2.25rem;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    margin-bottom: 2rem;
}

.section h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #102a43;
}

/* Team */

.team-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
    gap: 1.75rem;
}

@media (max-width: 800px) {
    .team-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.team-member {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    align-items: flex-start;
}

.team-photo-wrap {
    flex: 0 0 150px;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.team-text {
    flex: 1 1 180px;
}

.team-text h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

/* About & Contact */

.about-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    align-items: flex-start;
}

.about-text {
    flex: 1 1 260px;
}

.about-photo-wrap {
    flex: 0 0 230px;
}

.about-photo {
    max-width: 230px;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.address {
    white-space: pre-line;
}

.footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1.25rem;
    font-size: 0.84rem;
    color: #6b7280;
}

/* Extra image strip */

.image-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.image-strip img {
    flex: 1 1 160px;
    min-width: 160px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

/* Responsive tweaks */

@media (max-width: 640px) {
    header {
        padding: 0.75rem 1rem;
    }
    .hero {
        padding: 1.9rem 1.5rem;
    }
    .section {
        padding: 1.6rem 1.5rem;
    }
}
