/* 通用样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e0f4ff;
    color: #333;
}

/* 顶部导航栏样式 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #e0f4ff;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar nav a {
    margin-left: 1rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
}

.cart-button {
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 主内容区域 */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.content-container {
    display: flex;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    flex-direction: column;
}

.image-section {
    position: relative;
}

.baby-image {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* 文本区域样式 */
.text-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.text-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.download-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #0056b3;
}
