.hero-section .hero-bg-image {
    object-position: bottom;
}

.hero-section .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* 工作流程樣式 */
#serviceProcessSection {
    background: #ffffff;
}

#serviceProcessSection .container {
    padding: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    position: relative;
    transition: all 0.3s ease;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 80px;
    right: -23%;
    width: 96px;
    height: 58px;
    background-image: url(../image/step-line.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.step-item .step-icon svg {
    transition: all 0.3s ease;
}

.step-item:last-child::after {
    display: none;
}

.step-item:nth-child(1)::after,
.step-item:nth-child(3)::after,
.step-item:nth-child(5)::after{
    transform: rotate(218deg);
}

.step-item:nth-child(2)::after,
.step-item:nth-child(4)::after {
    top: -12px;
    transform: rotate(172deg);
}

.step-item:nth-child(2),
.step-item:nth-child(4),
.step-item:nth-child(6) {
    margin-top: 100px;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-icon svg {
    width: 60px;
    height: 60px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 12px 0;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    max-width: 250px;
    margin: 0 auto;
}

.step-item:hover .step-icon {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.step-item:hover svg path {
    fill: #ffffff;
}

.step-item:hover svg {
    transform: rotateY(180deg);
}

/* 除甲醛流程 */

#formaldehydeRemovalBody #serviceProcessSection {
    background-image: none;
}

#formaldehydeRemovalBody #serviceProcessSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/formalde5.jpg');
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.06;
    z-index: 0;
}

/* 現代化服務展示樣式 */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.services-section .section-header {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(255, 123, 20, 0.05) 0%, rgba(255, 123, 20, 0.02) 100%); */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 123, 20, 0.2);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 32px 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #ff7b14;
}

/* 特殊卡片样式 */
.service-card.special-card {
    background: #ffffff;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

/* .service-card.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7b14 0%, #ff9500 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
} */

.service-card.special-card:hover::before {
    transform: scaleX(1);
}

.service-card.special-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 123, 20, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card.special-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.special-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 32px 24px;
}

.special-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9500 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 123, 20, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    stroke-width: 2;
}

.special-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.special-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #6b7280;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* 团队卡片特殊样式 */
.team-card .special-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.team-card::after {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* 品质保证卡片特殊样式 */
.quality-card .special-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.quality-card::after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.service-card.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 123, 20, 0.2);
}

.service-card.special-card:hover .special-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 32px rgba(255, 123, 20, 0.4);
}

.service-card.special-card:hover .special-content h3 {
    color: #ff7b14;
}

.service-card.special-card:hover .special-content p {
    color: #374151;
}

/* 響應式設計 */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .service-card.special-card {
        min-height: 200px;
    }
    
    .special-content h3 {
        font-size: 1.25rem;
    }
    
    .special-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .section-subtitle {
        font-size: 1.125rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px 16px;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-card.special-card {
        min-height: 180px;
    }
    
    .special-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .special-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .special-content h3 {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }
    
    .special-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-content {
        padding: 16px 12px;
    }
    
    .service-card.special-card {
        min-height: 160px;
    }
    
    .special-content {
        padding: 16px;
    }
    
    .special-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .special-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .special-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .special-content p {
        font-size: 0.8rem;
    }
}

/* 服務範圍樣式 -start */
#areaSection.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#areaSection .section-header {
    text-align: center;
}

#areaSection .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
}

#areaSection .service-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

#areaSection .service-item:hover::before {
    transform: scaleX(1);
}

#areaSection .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 123, 20, 0.2);
}

#areaSection .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 123, 20, 0.3);
}

#areaSection .service-icon svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
    stroke-width: 2;
}

#areaSection .service-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

#areaSection .service-item p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

#areaSection .service-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

#areaSection .service-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 16px;
    color: rgb(136, 145, 152);
    line-height: 1.5;
}

#areaSection .service-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff7b14;
    font-weight: bold;
    font-size: 1.2rem;
}

#areaSection .service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 123, 20, 0.4);
}

#areaSection .service-item:hover h3 {
    color: #ff7b14;
}

.area-item.img-wrapper {
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

.area-item.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.area-item.img-wrapper:hover img {
    transform: scale(1.2);
}

.area-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    /* width: 80px;
    height: 80px; */
    /* margin: 0 auto 25px; */
    /* background: rgba(255, 239, 211, 0.486); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.area-item:hover .icon-wrapper {
    transform: scale(1.1);
}

.area-item:hover .icon-wrapper .area-icon {
    transform: rotateY(180deg);
}

.icon-wrapper .area-icon {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
}

.area-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 46px 0 10px 0;
    line-height: 1.3;
}

.sub-title {
    font-size: 16px;
    color: var(--font-color);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.details-list {
    text-align: left;
    margin-bottom: 25px;
}

.d-item {
    font-size: 16px;
    color: #889198;
    margin: 0 0 7px 0;
    padding-left: 25px;
    position: relative;
    line-height: 26px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.d-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--main-color);
    font-weight: bold;
    font-size: 18px;
    background-image: url('../image/check.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;


}

/* 響應式設計 */
@media (max-width: 1200px) {
    #areaSection .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    #areaSection.services-section {
        padding: 40px 0;
    }
    
    #areaSection .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #areaSection .service-item {
        padding: 30px 20px;
    }
    
    #areaSection .service-icon {
        margin-bottom: 20px;
    }
    
    #areaSection .service-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    #areaSection .service-item p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    #areaSection.services-section {
        padding: 40px 0;
    }
    
    #areaSection .service-item {
        padding: 25px 15px;
    }
    
    #areaSection .service-icon {
        margin-bottom: 15px;
    }
    
    #areaSection .service-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    #areaSection .service-item p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

/* 宣傳廣告樣式 -start */
.promo-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* 宣傳廣告背景裝飾元素 */
.promo-section .philosophy-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.promo-section .decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 123, 20, 0.08), rgba(255, 123, 20, 0.03));
    animation: float 8s ease-in-out infinite;
}

.promo-section .circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.promo-section .circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.promo-section .circle-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.promo-section .decoration-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 123, 20, 0.1), transparent);
    animation: slide 12s ease-in-out infinite;
}

.promo-section .line-1 {
    width: 200px;
    height: 2px;
    top: 20%;
    left: 10%;
    animation-delay: 1s;
}

.promo-section .line-2 {
    width: 150px;
    height: 2px;
    top: 70%;
    right: 12%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes slide {
    0%, 100% {
        transform: translateX(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateX(30px);
        opacity: 0.8;
    }
}

.promo-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.promo-info {
    flex: 1;
}

.promo-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.promo-description {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.promo-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    text-align: right;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.original-price {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    font-size: 32px;
    font-weight: 600;
    color: #ff7b14;
    line-height: 1;
    letter-spacing: -0.02em;
}

.promo-button {
    color: #ff6b35;
    width: fit-content;
    background: none;
}

.promo-button:hover {
    color: #ff6b35;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 123, 20, 0.3);
}

/* 宣傳廣告響應式設計 */
@media (max-width: 768px) {
    .promo-section {
        padding: 60px 0;
    }
    
    .promo-card {
        padding: 36px 40px;
        margin: 0 20px;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .promo-action {
        align-items: center;
        text-align: center;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-description {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .promo-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .promo-card {
        padding: 28px 24px;
        margin: 0 16px;
    }
    
    .promo-content {
        gap: 32px;
    }
    
    .promo-title {
        font-size: 1.75rem;
    }
    
    .promo-description {
        font-size: 0.95rem;
    }
    
    .current-price {
        font-size: 1.75rem;
    }
    
    .promo-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* 免責條款樣式 -start */
.disclaimer-section {
    background: #ffffff;
    /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.2"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.4"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.3"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.disclaimer-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(255, 123, 20, 0.3);
    transition: all 0.3s ease;
}

.disclaimer-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ffffff;
    stroke-width: 2;
}

.disclaimer-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.disclaimer-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff7b14, #ff9500);
    border-radius: 2px;
}

.disclaimer-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.disclaimer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff7b14, #ff9500);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease;
}

.disclaimer-item:hover::before {
    transform: scaleY(1);
}

.disclaimer-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 123, 20, 0.2);
}

.disclaimer-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 123, 20, 0.3);
    transition: all 0.3s ease;
}

.disclaimer-item:hover .disclaimer-number {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 123, 20, 0.4);
}

.disclaimer-item p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.disclaimer-item:hover p {
    color: #1a1a1a;
}

/* 免責條款響應式設計 */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 60px 0;
    }
    
    .disclaimer-header {
        margin-bottom: 40px;
    }
    
    .disclaimer-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .disclaimer-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .disclaimer-title {
        font-size: 2rem;
    }
    
    .disclaimer-list {
        gap: 20px;
    }
    
    .disclaimer-item {
        padding: 20px;
        gap: 16px;
    }
    
    .disclaimer-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .disclaimer-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-section {
        padding: 50px 0;
    }
    
    .disclaimer-content {
        padding: 0 20px;
    }
    
    .disclaimer-title {
        font-size: 1.75rem;
    }
    
    .disclaimer-item {
        padding: 16px;
        gap: 12px;
    }
    
    .disclaimer-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .disclaimer-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .area-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .area-item {
        padding: 35px 25px 25px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .icon-wrapper .area-icon {
        width: 40px;
        height: 40px;
    }

    .area-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .area-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .area-item {
        padding: 40px 30px 30px;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .icon-wrapper .area-icon {
        width: 45px;
        height: 45px;
    }

    .area-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .area-item {
        padding: 35px 25px 25px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .icon-wrapper .area-icon {
        width: 40px;
        height: 40px;
    }

    .area-title {
        font-size: 22px;
    }

    .sub-title {
        font-size: 15px;
    }

    .d-item {
        font-size: 14px;
    }
}

.area-item.disclaimer {
    background-color: #fdf8f5;
    padding: 0px;
    position: relative;
    overflow: hidden;
}

.area-item.disclaimer-2 {
    width: calc((100% - 2 * 30px) / 2);
}

.area-item.disclaimer::after {
    content: '';
    position: absolute;
    bottom: -32px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-image: url('../image/item.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* opacity: 0.8; */
}

.disclaimer-wrapper {
    width: 100%;
    height: 100%;
    background-color: #fdf8f5; 
    border: 1px solid var(--main-color);
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FF7B14;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer-content {
    font-size: 14px;
    color: #555;
    line-height: 28px;
}

.disclaimer-content p {
    text-align: left;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
}

.disclaimer-content p .li-icon {
    width: 28px;
    height: 28px;
}

/* 响应式适配：移动端优化 */
@media (max-width: 768px) {
    .disclaimer-wrapper {
        padding: 16px;
        font-size: 13px;
    }
    .disclaimer-title {
        font-size: 15px;
    }
    .disclaimer-content {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* 服務範圍樣式 -end */

/* 甲醛危害樣式 -start */
#formaldehydeDangerSection .tips {
    font-size: 14px;
    color: #889198;
}

#formaldehydeDangerSection .left-wrapper video {
    width: 100%;
    border-radius: 12px;
}

#formaldehydeDangerSection .formalde-img-wrapper {
    width: 100%;
    border-radius: 12px;
    box-sizing: border-box;
}

#formaldehydeDangerSection .my-container .right-wrapper {
    padding-left: 60px;
}

/* 甲醛危害樣式 -end */

/* 價格與條款樣式 -start */
.pricing-terms-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-terms-section.whole-house {
    background: #ffffff;
}

.pricing-terms-section.one-time-cleaning {
    background: #ffffff;
}

.pricing-terms-section.terms-section {
    background: #ffffff;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 價格展示 */
.pricing-display {
    text-align: center;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.discount-card .pricing-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.area-limit {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.price-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff7b14;
}

.condition {
    font-size: 0.875rem;
    color: #64748b;
}

.discount-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.discount-text {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.discount-note {
    font-size: 0.875rem;
    color: #64748b;
}

/* 限時促銷 */
.promotion-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.promotion-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.promotion-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.promotion-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 123, 20, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.promotion-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.promotion-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
    border-radius: 20px 20px 0 0;
}

.promotion-card:hover {
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.promotion-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.promotion-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 123, 20, 0.3);
}

.promotion-icon svg {
    width: 24px;
    height: 24px;
}

.promotion-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.promotion-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promotion-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ff7b14;
    text-shadow: 0 1px 2px rgba(255, 123, 20, 0.1);
}

.promotion-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* 地板拋光及打蠟服務 */
.floor-polishing {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.floor-header {
    text-align: center;
    margin-bottom: 40px;
}

.floor-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.floor-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.floor-pricing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.floor-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.floor-tier:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tips-wrapper {
    padding: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tips-wrapper .tip {
    font-size: 14px;
    color: #666;
}

.tier-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tier-range {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.tier-note {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff7b14;
    text-shadow: 0 1px 2px rgba(255, 123, 20, 0.1);
}

/* 包含服務 */
.floor-polishing .included-services {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    margin-top: 32px;
}

.floor-polishing .included-header {
    text-align: left;
    margin-bottom: 24px;
}

.floor-polishing .included-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.floor-polishing .included-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-style: italic;
}

.floor-polishing .included-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floor-polishing .included-main-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.floor-polishing .included-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.floor-polishing .included-icon svg {
    width: 20px;
    height: 20px;
}

.floor-polishing .included-text {
    flex: 1;
}

.floor-polishing .included-main-text {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
}

.floor-polishing .included-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floor-polishing .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.floor-polishing .feature-item:hover {
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.floor-polishing .feature-number {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.floor-polishing .feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.floor-polishing .feature-icon svg {
    width: 14px;
    height: 14px;
}

.floor-polishing .feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
}

/* 條款手風琴 */
.terms-accordion {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.terms-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.terms-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.terms-tab:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.terms-tab.active {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.terms-tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
}

.tab-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7b14;
    transition: all 0.3s ease;
}

.terms-tab.active .tab-icon {
    color: #ff7b14;
    transform: scale(1.1);
}

.tab-text {
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.terms-tab.active .tab-arrow {
    color: #ff7b14;
    transform: rotate(180deg);
}

.terms-content {
    position: relative;
}

.terms-panel {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease-in-out;
}

.terms-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
}

.panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.panel-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.panel-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.panel-body.disclaimer-terms {
    align-items: center;
}

.terms-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.terms-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.terms-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 123, 20, 0.3);
}

.terms-icon svg {
    width: 24px;
    height: 24px;
}

.terms-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.terms-main {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.terms-note {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

.terms-disclaimer {
    color: #666666;
    text-align: right;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
    font-weight: 500;
}

/* 免責條款樣式 */
.disclaimer-list {
    width: 72%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.disclaimer-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff7b14, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 123, 20, 0.3);
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content p {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .promotion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .included-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-terms-section {
        padding: 80px 0;
    }
    
    .pricing-content {
        gap: 40px;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .promotion-section,
    .floor-polishing,
    .included-services,
    .terms-section {
        padding: 32px;
    }
    
    .promotion-item,
    .included-item,
    .terms-item {
        padding: 16px;
    }
    
    .floor-polishing {
        padding: 32px;
    }
    
    .floor-polishing .included-services {
        padding: 24px;
    }
    
    .floor-tier {
        padding: 20px 24px;
    }
    
    .floor-polishing .feature-item {
        padding: 14px 16px;
    }
    
    .promotion-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .promotion-card {
        padding: 24px;
    }
    
    .promotion-card-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .promotion-icon {
        width: 40px;
        height: 40px;
    }
    
    .promotion-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .promotion-card-title {
        font-size: 1rem;
    }
    
    .promotion-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-terms-section {
        padding: 60px 0;
    }
    
    .pricing-content {
        gap: 32px;
    }
    
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .promotion-section,
    .floor-polishing,
    .included-services,
    .terms-section {
        padding: 24px;
    }
    
    .floor-polishing {
        padding: 24px;
    }
    
    .floor-polishing .included-services {
        padding: 20px;
    }
    
    .floor-title {
        font-size: 1.5rem;
    }
    
    .floor-subtitle {
        font-size: 1rem;
    }
    
    .floor-tier {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .tier-price {
        font-size: 1.25rem;
        align-self: flex-end;
    }
    
    .floor-polishing .included-title {
        font-size: 1.125rem;
    }
    
    .floor-polishing .feature-item {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .floor-polishing .feature-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .floor-polishing .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .floor-polishing .feature-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .promotion-section {
        padding: 24px;
    }
    
    .promotion-title {
        font-size: 1.5rem;
    }
    
    .promotion-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .promotion-card {
        padding: 20px;
    }
    
    .promotion-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .promotion-icon {
        width: 36px;
        height: 36px;
    }
    
    .promotion-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .promotion-card-title {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .promotion-price {
        font-size: 1.25rem;
    }
    
    .feature-tag {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .terms-tab {
        padding: 20px 16px;
        font-size: 0.9rem;
    }
    
    .tab-icon {
        width: 20px;
        height: 20px;
    }
    
    .tab-arrow {
        width: 14px;
        height: 14px;
    }
    
    .terms-panel {
        padding: 32px 24px;
    }
    
    .panel-title {
        font-size: 1.5rem;
    }
    
    .terms-item {
        padding: 20px;
        gap: 12px;
    }
    
    .terms-icon {
        width: 40px;
        height: 40px;
    }
    
    .terms-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .terms-main {
        font-size: 1rem;
    }
    
    .disclaimer-item {
        padding: 16px;
        gap: 12px;
    }
    
    .disclaimer-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .disclaimer-content p {
        font-size: 0.9rem;
    }
}

/* 價格與條款樣式 -end */
