body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
}

header {
    background: #222;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: #4a90e2;
    color: white;
}

.hero button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    background: #fff;
    color: #4a90e2;
    cursor: pointer;
    border-radius: 5px;
}

.section {
    padding: 40px 20px;
    background: #fff;
    margin: 20px;
    border-radius: 8px;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.family-card {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.family-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.family-card figcaption {
    margin-top: 12px;
    font-weight: 600;
    color: #333;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
}
