* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang TC", "Microsoft JhengHei", "Helvetica Neue", sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden; /* 防止動畫跑出版面 */
}

/* === 從上到下的進場動畫 === */
.animate-item {
    opacity: 0;
    /* 由下往上浮現，-40px改為40px */
    transform: translateY(-40px);
    animation: fadeSlideDown 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 1.0s; }
.delay-4 { animation-delay: 1.4s; }

@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === 表頭 === */
.hero-section {
    width: 100%;
    height: 700px;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-image {
    max-width: 90%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* === 內容 === */
.main-content {
    background-color: #ffffff;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
}

/* === 分隔線 === */
.divider-line {
    width: 100%;
    max-width: 950px;
    height: 1px;
    background-color: #231815;
    margin: -20px auto 35px auto;
}

/* === 按鈕 === */
.cta-section {
    margin-bottom: 10px;
}

.glass-btn {
    display: inline-block;
    padding: 15px 50px;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 2px;
    
    background: #ff315d;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 10px 0 rgba(233, 30, 99, 0.35);
    transition: all 0.3s ease;
}

.glass-btn:hover {
    background: #e40938;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 15px 0 rgba(233, 30, 99, 0.5);
}

/* === 底部 === */
.footer {
    width: 100%;
    background-color: #ffffff;
}

.notes-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0px 20px 25px 20px;
    color: #555555;
    font-size: 20px;
}

.notes-container h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 5px;
}

.notes-container ol {
    padding-left: 24px;
}

.notes-container li {
    margin-bottom: 3px;
    text-align: justify;
}

.footer-bottom-bar {
    width: 100%;
    height: 90px;
    background-color: #f0f0f0;
}


/* === 手機版(RWD) === */
@media (max-width: 768px) {
    .hero-section {
        background-image: url('../images/bg_m.jpg');
        height: 350px;
    }

    .main-content {
        padding: 10px 15px;
    }

    .glass-btn {
        padding: 14px 50px;
        font-size: 32px;
    }
    
    .footer-bottom-bar {
        height: 50px;
    }


}