body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

nav ul li {
    display: inline-block;
}

nav ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    background-color: #0bb1e4;
}

nav ul li a {
    color: white;
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    text-align: center;
}

nav ul li a:hover {
    background-color: #111;
}

nav {
    margin-bottom: 20px;
}

/* Image Styles */
.section-image {
    max-width: 300px;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Family photos: side-by-side layout */
.family-photos {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 20px 0;
}

.family-photos .section-image {
    max-width: 48%;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Content Sections */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #0bb1e4;
    font-size: 1.8em;
    margin-bottom: 15px;
    margin-top: 30px;
    border-bottom: 3px solid #0bb1e4;
    padding-bottom: 10px;
}

.content p {
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

/* List Styles */
.service-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    background-color: #f0f8ff;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #0bb1e4;
    border-radius: 4px;
    color: #333;
}

.service-list li:before {
    content: "✓ ";
    color: #0bb1e4;
    font-weight: bold;
    margin-right: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0bb1e4 0%, #0a92c4 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2em;
    font-style: italic;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9em;
}

footer p {
    margin: 0;
}

