body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
    color: #333;
}

.navbar {
    height: 100px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero-section {
    background: linear-gradient(135deg, #f8bbd0 0%, #e1f5fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/heroimg1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary {
    background-color: #ff6b8b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px -1px rgba(255, 107, 139, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #ff477e;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -5px rgba(255, 107, 139, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -3px rgba(255, 107, 139, 0.3);
}

.btn-secondary {
    background-color: #f3f4f6;
    color: #ff6b8b;
    border: 1px solid #ff6b8b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background-color: #ff6b8b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 107, 139, 0.3);
}

.nav-link {
    position: relative;
    padding: 8px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ff6b8b !important;
    transform: translateY(-2px);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f48fb1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(244, 143, 177, 0.3);
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 20px rgba(244, 143, 177, 0.4);
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(244, 143, 177, 0.1);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card p {
    position: relative;
    z-index: 1;
}

.testimonial-card .text-yellow-400 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.price-card {
    background-color: white;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f0f0f0;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.price-card.featured {
    border: 2px solid #f48fb1;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(244, 143, 177, 0.15);
}

.price-card.featured::before {
    content: "热门选择";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f48fb1;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(244, 143, 177, 0.3);
}

.price-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f48fb1;
    margin-bottom: 8px;
}

.price-card .price-unit {
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
}

.price-card ul {
    margin-bottom: 32px;
}

.price-card li {
    padding: 8px 0;
    text-align: left;
    font-size: 1rem;
}

.price-card li i {
    color: #4ade80;
    margin-right: 12px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 240, 245, 0.5);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0 12px;
}

.faq-question:hover {
    color: #f48fb1;
}

.faq-question i {
    transition: all 0.3s ease;
    font-size: 14px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 12px;
}

.faq-answer.active {
    max-height: 200px;
    padding: 16px 12px;
}

.faq-answer p {
    line-height: 1.6;
    color: #666;
}

.trust-badge {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    justify-content: center;
    min-width: 150px;
    max-width: 200px;
    height: 80px;
    margin: 0;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
    margin-right: 12px;
    color: #f48fb1;
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.trust-badge span {
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
    text-align: center;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 266px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: 266px;
    object-fit: cover;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.carousel-control:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.carousel-control i {
    font-size: 18px;
    color: #333;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 添加交错动画效果 */
.scroll-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.scroll-reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.scroll-reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.scroll-reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.scroll-reveal:nth-child(6) {
    transition-delay: 0.5s;
}

.scroll-reveal:nth-child(7) {
    transition-delay: 0.6s;
}

.scroll-reveal:nth-child(8) {
    transition-delay: 0.7s;
}

@media (max-width: 768px) {
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .trust-badge {
        margin: 0 0 12px 0;
        flex: 1 1 100%;
        max-width: 100%;
        height: 70px;
    }
    
    .navbar {
            height: 80px;
        }
    
    .carousel-item img {
        height: 166px;
    }
    
    .carousel {
        height: 166px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    overflow: visible;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
    white-space: normal !important;
    overflow: visible !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    -webkit-text-stroke: 1px #f472b6 !important;
    text-stroke: 1px #f472b6 !important;
    display: block !important;
    min-width: auto !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
}

.trust-badges {
    justify-content: center;
}

.hero-content p {
    font-size: 1.25rem !important;
    color: white !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    #faq .carousel {
        width: 100% !important;
        height: 300px !important;
    }
    
    #faq .flex.justify-end {
        justify-content: center;
    }
}

/* 页脚样式 */
footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f48fb1, #ff6b8b);
}

footer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

footer p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

footer li:hover {
    transform: translateX(5px);
    color: #f48fb1;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

footer a:hover {
    color: #f48fb1;
}

footer .border-t {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
}

footer .border-t p {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

footer li i {
    margin-right: 12px;
    color: #f48fb1;
    width: 16px;
    text-align: center;
}