.father-main {
    z-index: 98;
    font-family: "Microsoft Yahei", Arial, sans-serif;
    background-color: #eef9f7;
    color: #2f4f4f;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #4ca1af, #c4e0e5);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}
header h1 {
    font-size: 3em;
    margin: 0;
}
header p {
    font-size: 1.2em;
    margin: 10px 0 0;
}
.container {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.box {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.box h2 {
    font-size: 2em;
    color: #4ca1af;
    border-bottom: 3px solid #4ca1af;
    display: inline-block;
    margin-bottom: 10px;
}
.box p {
    font-size: 1.2em;
    text-align: justify;
}
.highlights ul {
    list-style: square;
    padding-left: 20px;
}
.highlights ul li {
    margin: 10px 0;
    font-size: 1.1em;
}
.gallery-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
}
.gallery-images div {
    aspect-ratio: 1;
    overflow: hidden;
}
.gallery-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.reviews {
    margin-top: 20px;
}
.reviews p {
    font-size: 1.1em;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #4ca1af;
    background: #f9fafa;
}