﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #FF6B35;
}

.btn-outline {
    border: 2px solid #FF6B35;
    color: #FF6B35;
    background: transparent;
}

.btn-outline:hover {
    background: #FF6B35;
    color: white;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 22px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #FF6B35;
}

.logo i {
    font-size: 32px;
    margin-right: 10px;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #FF6B35;
}

.header-right {
    margin-left: 20px;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 120px 0 70px;
    color: white;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.locker-illustration {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.locker-row {
    display: flex;
    gap: 15px;
}

.locker-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.locker-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    width: 60%;
    height: 60%;
    border-radius: 5px;
}

.locker-box.small {
    width: 80px;
    height: 100px;
}

.locker-box.medium {
    width: 100px;
    height: 120px;
}

.locker-box.large {
    width: 120px;
    height: 140px;
}

.stats {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 0;
    margin-top: 50px;
}

.stats .container {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.products {
    padding: 45px 0;
    background: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 2px solid #FF6B35;
    transform: scale(1.05);
}

.product-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon i {
    color: #FF6B35;
}

.product-icon.small-icon i {
    font-size: 40px;
}

.product-icon.medium-icon i {
    font-size: 52px;
}

.product-icon.large-icon i {
    font-size: 64px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    margin-bottom: 12px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 16px;
}

.product-features li {
    padding: 5px 0;
    color: #555;
    font-size: 13px;
}

.how-it-works {
    padding: 35px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-icon {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.step-icon i {
    font-size: 40px;
    color: white;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.pricing {
    padding: 35px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #FF6B35;
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 24px;
    color: #FF6B35;
    font-weight: 600;
}

.price .amount {
    font-size: 56px;
    font-weight: 700;
    color: #FF6B35;
}

.price .period {
    font-size: 16px;
    color: #666;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 14px;
}

.pricing-features li i {
    color: #28a745;
    margin-right: 10px;
}

.about {
    padding: 35px 0;
}

.about .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-content {
    flex: 1;
    padding-right: 50px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 24px;
    color: #FF6B35;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

.about-image {
    flex: 1;
}

.about-illustration {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration i {
    font-size: 100px;
    color: white;
    opacity: 0.9;
}

.contact {
    padding: 35px 0;
    background: #f8f9fa;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 32px;
    color: #FF6B35;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.contact-item .value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.footer {
    background: #333;
    color: white;
    padding: 40px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    margin-right: 10px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #FF6B35;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
    }

    .nav ul li {
        margin: 10px 0;
    }

    .header-right {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .locker-box.small {
        width: 50px;
        height: 65px;
    }

    .locker-box.medium {
        width: 65px;
        height: 80px;
    }

    .locker-box.large {
        width: 80px;
        height: 95px;
    }

    .stats .container {
        flex-wrap: wrap;
    }

    .stat-item {
        width: 50%;
        margin-bottom: 20px;
    }

    .product-grid,
    .steps,
    .pricing-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

.locations {
    padding: 40px 0;
    background: #fff;
}

.location-search {
    margin-bottom: 25px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #eee;
    border-radius: 50px;
    padding: 5px 20px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.search-box i {
    color: #FF6B35;
    font-size: 20px;
    margin-right: 15px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px;
    font-size: 16px;
}

.search-box button {
    padding: 12px 30px;
}

.hot-cities {
    text-align: center;
    color: #666;
}

.hot-cities span {
    margin-right: 15px;
}

.hot-cities button {
    background: #f0f0f0;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
}

.hot-cities button:hover {
    background: #FF6B35;
    color: white;
}

.location-list {
    max-width: 900px;
    margin: 0 auto;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.location-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.location-info p i {
    color: #FF6B35;
    margin-right: 8px;
    width: 20px;
}

.location-info .available {
    color: #28a745;
    font-weight: 600;
}

.location-actions {
    flex-shrink: 0;
    margin-left: 20px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.booking {
    padding: 40px 0;
    background: #f8f9fa;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-group textarea {
    height: 80px;
    resize: none;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-summary {
    background: #fff5f0;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.total-price {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
}

.btn-lg {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .location-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-actions {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .location-actions .btn {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-form {
        padding: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B35;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.hot {
    background: #e74c3c;
}

.product-specs {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #666;
}

.spec-value {
    font-weight: 600;
    color: #333;
}

.step-tip {
    display: inline-block;
    background: #fff5f0;
    color: #FF6B35;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin-top: 10px;
}

.how-it-works-tips {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.tips-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tips-item i {
    font-size: 36px;
    color: #FF6B35;
}

.tips-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.tips-item p {
    font-size: 14px;
    color: #666;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.scenario-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.scenario-item:hover {
    background: #fff5f0;
    transform: translateY(-5px);
}

.scenario-item i {
    font-size: 32px;
    color: #FF6B35;
    margin-bottom: 10px;
}

.scenario-item span {
    font-size: 14px;
    color: #333;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pricing-tab {
    background: #f0f0f0;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.pricing-tab.active {
    background: #FF6B35;
    color: white;
}

.pricing-tab:hover:not(.active) {
    background: #e0e0e0;
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

.pricing-note i {
    color: #FF6B35;
    margin-right: 8px;
}

.products-extra {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.products-extra h3 {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.value-services {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.value-services h3 {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.value-services .section-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

.value-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-service-item {
    background: white;
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #FF6B35;
}

.value-service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #fff5f0 0%, #fff0e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-service-icon i {
    font-size: 24px;
    color: #FF6B35;
}

.value-service-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.value-service-item p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

.service-advantages {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.service-advantages h3 {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 22px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.advantage-icon i {
    color: white;
    font-size: 22px;
}

.advantage-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.advantage-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.user-reviews {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.user-reviews h3 {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 22px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.review-rating {
    margin-bottom: 12px;
}

.review-rating i {
    color: #FFD700;
    font-size: 14px;
}

.review-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.author-location {
    font-size: 12px;
    color: #999;
}

.faq-section {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.faq-section h3 {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 22px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: #FF6B35;
    margin-right: 12px;
    font-size: 16px;
}

.faq-question span {
    font-weight: 500;
    color: #333;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer p {
    padding: 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 150px;
}

@media (max-width: 992px) {
    .how-it-works-tips {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .scenario-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 30px;
    }


    .value-services-grid {
        grid-template-columns: 1fr;
    }

    .scenario-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .scenario-item {
        padding: 15px;
    }

    .scenario-item i {
        font-size: 24px;
    }

    .pricing-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pricing-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

.animate-in {
    opacity: 1 !important;
    transform: none !important;
}

.product-card,
.step-item,
.pricing-card,
.location-item {
    opacity: 1 !important;
}
