* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #eef2f7;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.card {
    width: 100%;
    max-width: none;
    background-color: white;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    margin: 0;
}

.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #0f3d6a, #164a7a);
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

.header {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 80px;
}

.header::after {
    content: '';
    display: block;
    height: 30px;
    background: radial-gradient(circle at 20% 0, transparent 10px, #0f3d6a 10px),
                radial-gradient(circle at 50% 0, transparent 10px, #0f3d6a 10px),
                radial-gradient(circle at 80% 0, transparent 10px, #0f3d6a 10px);
    background-size: 100px 30px;
    background-repeat: repeat-x;
    transform: translateY(10px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img.logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 4px;
}

.brand span {
    color: #f5fff9;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.header h1 {
    display: none;
}

.navbar {
    background-color: #123456;
    padding: 15px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid #2a4a6a;
}

.navbar a {
    color: #f0f8ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.navbar a:hover {
    border-bottom-color: #ffd966;
}

.content {
    padding: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a2a44;
    margin-bottom: 25px;
    border-left: 8px solid #0a2a44;
    padding-left: 20px;
    line-height: 1.2;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: #1e3a5f;
    background-color: #f0f8ff;
    padding: 25px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid #c9d9e9;
}

.description strong {
    color: #0a2a44;
}

.clipboard-notice {
    background-color: #f0f5fa;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    border: 1px solid #c0d0e5;
    margin-bottom: 30px;
}

.clipboard-item {
    font-size: 16px;
    color: #1e3a5f;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.member-card {
    border: 1px solid #c9d9e9;
    border-radius: 16px;
    background-color: #fff;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.member-card img {
    width: 100%;
    border-radius: 12px;
    height: 160px;
    object-fit: cover;
}

.member-card h3 {
    margin: 10px 0 4px;
    font-size: 18px;
    color: #123456;
}

.member-card p {
    margin: 2px 0;
    color: #1e3a5f;
    font-size: 14px;
}

.badge {
    background-color: #123456;
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-left: auto;
}

hr {
    border: none;
    border-top: 2px dashed #a0b8d0;
    margin: 20px 0 25px 0;
}

.markup-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: white;
    border: 1px solid #b0c8e0;
    border-radius: 40px;
    padding: 10px 25px;
    width: fit-content;
    margin-bottom: 25px;
}

.share-text {
    font-weight: 600;
    color: #123456;
    font-size: 16px;
}

.share-link {
    background-color: #e8f0fa;
    border-radius: 30px;
    padding: 8px 20px;
    color: #0a2a44;
    font-weight: 500;
    border: 1px solid #a0b8d0;
    cursor: default;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    height: 180px;
    border: 1px solid #c9d9e9;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5a6f88;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #d0dcec;
    margin-top: 10px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.contact-card {
    background: white;
    border: 1px solid #dbe9f8;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(17, 56, 93, 0.08);
}

.contact-card h3 {
    margin: 8px 0 4px;
    color: #0a2a44;
}

.contact-card p {
    margin: 0;
    color: #1e3a5f;
}

.map-frame {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 18px;
    margin-top: 14px;
    box-shadow: 0 10px 22px rgba(17,56,93,0.1);
}

@media (max-width: 700px) {
    .navbar {
        gap: 15px;
        padding: 15px 20px;
    }
    
    .content {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .clipboard-notice {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 25px;
    }
    
    .badge {
        margin-left: 0;
    }
    
    .markup-share {
        border-radius: 25px;
    }
    
    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}