body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8faff;
    color: #222;
}
header {
    background: #1565c0;
    color: #fff;
    padding: 0 0 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo-title {
    display: flex;
    align-items: center;
    padding: 20px 5vw 10px 5vw;
}
.logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-right: 18px;
    object-fit: cover;
    border: 2px solid #fff;
}
header h1 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 2px;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0 5vw;
    background: #1976d2;
    border-radius: 0 0 12px 12px;
}
nav ul li {
    margin: 0 18px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #ffeb3b;
}
.banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 32px;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 8vw;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(21,101,192,0.7);
    padding: 24px 36px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.banner-text h2 {
    margin: 0 0 10px 0;
    font-size: 2rem;
}
.intro {
    max-width: 1100px;
    margin: 0 auto 40px auto;
    padding: 0 5vw;
    text-align: center;
}
.intro h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}
.intro-images {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.intro-images img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
    border: 2px solid #e3eafc;
}
footer {
    background: #1565c0;
    color: #fff;
    text-align: center;
    padding: 24px 5vw 12px 5vw;
    border-radius: 24px 24px 0 0;
    margin-top: 40px;
}
.footer-info a {
    color: #ffeb3b;
    text-decoration: underline;
}
@media (max-width: 800px) {
    .logo-title { flex-direction: column; align-items: flex-start; }
    .banner-text { left: 2vw; padding: 16px 12px; font-size: 1rem; }
    .intro-images { flex-direction: column; gap: 16px; }
    .intro-images img { width: 90vw; height: 120px; }
    nav ul { flex-direction: column; }
    nav ul li { margin: 0 0 0 0; }
} 