/* 主页样式 */

/* Hero Banner 通用样式 */
.hero-banner {
    position: relative;
    width: 100%;
    height: 761px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #000;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-banner-dark .hero-banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    padding-left: 64px;
    padding-right: 20px;
    max-width: 587px;
    width: 100%;
    box-sizing: border-box;
}

.hero-banner-light .hero-banner-content {
    max-width: 814px;
    width: 100%;
}

.hero-banner-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.hero-banner-light .hero-banner-content h2 {
    color: #333;
    font-size: 48px;
}

.hero-banner-content h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 24px;
    color: #fff;
}

.hero-banner-light .hero-banner-content h3 {
    color: #666;
    font-size: 20px;
}

.hero-banner-button-group {
    margin-top: 16px;
}

.rounded-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.rounded-btn:hover {
    background: #0056b3;
}

.hero-banner-dark .rounded-btn {
    background: #fff;
    color: #333;
}

.hero-banner-dark .rounded-btn:hover {
    background: #f0f0f0;
}

/* Hero Banner Caption Group */
.hero-banner-caption-group {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 64px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.hero-banner-caption-group span {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    white-space: pre-line;
    font-weight: 500;
}

.hero-banner-caption-group .divider {
    width: 1px;
    height: 42px;
    background: #333;
}

/* Section 通用样式 */
section {
    margin-bottom: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1775px;
    margin: 0 auto;
    padding: 80px 64px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
    text-align: left;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.stats-title {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex-shrink: 0;
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    flex: 1;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 18px;
    color: #666;
    line-height: 1.4;
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.product-card-large {
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-card-large img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.product-card-large:hover img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #007bff;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-card-large h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.product-card-large h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #666;
    line-height: 1.4;
}

.product-card-large .product-price {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-card-large .product-note {
    font-size: 14px;
    color: #007bff;
    margin-bottom: 16px;
}

.product-link {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.product-link:hover {
    background: #0056b3;
}

/* Popular Categories Section */
.popular-categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.category-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

/* Fan Favorites Section */
.fan-favorites-section {
    padding: 80px 0;
    background: #fff;
}

.favorites-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    background: none;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.favorite-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.favorite-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.favorite-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

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

.favorite-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.favorite-card h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #666;
}

/* Perfect Sound Section */
.perfect-sound-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.scenario-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.scenario-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.scenario-card h3,
.scenario-card h4 {
    padding: 24px;
}

.scenario-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.scenario-card h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #666;
}

.scenario-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 24px 24px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.scenario-link:hover {
    background: #0056b3;
}

/* Brand Equity Section */
.brand-equity-section {
    padding: 80px 0;
    background: #fff;
}

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

.brand-equity-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.brand-equity-header p {
    font-size: 18px;
    color: #666;
}

.brand-equity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1477px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.brand-equity-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    height: 192px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-equity-item:nth-child(1) {
    grid-column: span 1;
}

.brand-equity-item:nth-child(4),
.brand-equity-item:nth-child(5) {
    grid-column: span 1;
}

.brand-equity-item:nth-child(6) {
    grid-column: span 2;
}

.brand-equity-header-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.brand-equity-header-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.brand-equity-header-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.support-icons {
    display: flex;
    gap: 8px;
}

.support-icons img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.brand-equity-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Membership Section */
.membership-section {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
}

.membership-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.membership-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.membership-content {
    position: relative;
    z-index: 1;
    max-width: 1477px;
    width: 100%;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 661px;
    box-sizing: border-box;
}

.membership-text {
    text-align: center;
    max-width: 600px;
}

.membership-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.membership-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.membership-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Get to Know Us Section */
.get-to-know-section {
    padding: 80px 0;
    background: #fff;
}

.know-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.know-us-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 60px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.know-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.know-us-card h3 {
    font-size: 24px;
    font-weight: 600;
}

/* Media Reviews Section */
.media-reviews-section {
    padding: 80px 0;
    background: #fff;
}

.media-reviews-swiper {
    overflow: visible;
}

.media-reviews-swiper .swiper-wrapper {
    display: flex;
    gap: 16px;
}

.media-reviews-swiper .swiper-slide {
    width: 880px;
    flex-shrink: 0;
}

.review-card {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    height: 384px;
}

.review-image {
    width: 431px;
    flex-shrink: 0;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.review-header p {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

/* Customer Reviews Section */
.customer-reviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.customer-reviews-swiper {
    overflow: visible;
}

.customer-reviews-swiper .swiper-wrapper {
    display: flex;
    gap: 16px;
}

.customer-reviews-swiper .swiper-slide {
    width: 432px;
    flex-shrink: 0;
}

.customer-review-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    height: 525px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.customer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.customer-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-review-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
    white-space: pre-line;
}

.customer-product-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #333;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
}

.customer-product-link img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.customer-product-link p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

/* Swiper 基础样式 */
.swiper {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.swiper-slide {
    flex-shrink: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .container {
        padding: 60px 40px;
    }
    
    .hero-banner-content {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-banner-light .hero-banner-content {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-banner-caption-group {
        padding: 0 40px 20px;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .brand-equity-grid {
        gap: 12px;
    }
}

@media (max-width: 1024px) {
    .hero-banner {
        height: 600px;
    }
    
    .hero-banner-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .hero-banner-light .hero-banner-content {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-banner-content h2 {
        font-size: 40px;
    }
    
    .hero-banner-content h3 {
        font-size: 18px;
    }
    
    .hero-banner-caption-group {
        padding: 0 30px 20px;
    }
    
    .container {
        padding: 50px 30px;
    }
    
    .stats-wrapper {
        gap: 40px;
    }
    
    .stats-title {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .favorites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brand-equity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-equity-item:nth-child(6) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100vw;
        width: 100%;
        padding: 40px 20px;
        box-sizing: border-box;
    }
    
    .hero-banner {
        height: 500px;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-banner-content {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-banner-light .hero-banner-content {
        max-width: 100%;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-banner-content h2 {
        font-size: 32px;
    }
    
    .hero-banner-light .hero-banner-content h2 {
        font-size: 32px;
    }
    
    .hero-banner-content h3 {
        font-size: 16px;
    }
    
    .hero-banner-light .hero-banner-content h3 {
        font-size: 16px;
    }
    
    .stats-title {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .product-card-large h3 {
        font-size: 24px;
    }
    
    .product-card-large h4 {
        font-size: 16px;
    }
    
    .product-card-large .product-price {
        font-size: 20px;
    }
    
    .category-card h3 {
        font-size: 24px;
    }
    
    .hero-banner-caption-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 20px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-banner-caption-group span {
        font-size: 14px;
        width: 100%;
    }
    
    .hero-banner-caption-group .divider {
        display: none;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stats-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .stats-title {
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }
    
    .products-grid,
    .categories-grid,
    .favorites-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    .product-card-large,
    .category-card,
    .favorite-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .scenarios-grid,
    .know-us-grid {
        grid-template-columns: 1fr;
    }
    
    .media-reviews-swiper,
    .customer-reviews-swiper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }
    
    .media-reviews-swiper .swiper-slide {
        width: 100%;
        max-width: 100%;
    }
    
    .review-card {
        flex-direction: column;
        height: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .review-image {
        width: 100%;
        max-width: 100%;
        height: 200px;
    }
    
    .customer-reviews-swiper .swiper-slide {
        width: 100%;
        max-width: 100%;
    }
    
    .customer-review-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .brand-equity-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .brand-equity-item:nth-child(6) {
        grid-column: span 1;
    }
    
    .membership-content {
        padding: 0 20px;
        min-height: 400px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .membership-text {
        width: 100%;
        max-width: 100%;
    }
    
    .membership-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    section {
        width: 100vw;
        max-width: 100vw;
    }
    
    .container {
        padding: 30px 15px;
        max-width: 100vw;
        width: 100%;
    }
    
    .hero-banner {
        height: 400px;
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero-banner-content {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-banner-light .hero-banner-content {
        max-width: 100%;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-banner-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .hero-banner-light .hero-banner-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-banner-content h3 {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .hero-banner-light .hero-banner-content h3 {
        font-size: 14px;
    }
    
    .hero-banner-caption-group {
        padding: 0 15px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-banner-caption-group span {
        font-size: 12px;
        width: 100%;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .rounded-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .product-card-large {
        padding: 16px;
    }
    
    .product-card-large img {
        height: 200px;
    }
    
    .product-card-large h3 {
        font-size: 20px;
    }
    
    .product-card-large h4 {
        font-size: 14px;
    }
    
    .product-card-large .product-price {
        font-size: 18px;
    }
    
    .category-card {
        padding: 40px 20px;
    }
    
    .category-card h3 {
        font-size: 20px;
    }
    
    .favorites-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .favorite-card {
        padding: 16px;
    }
    
    .favorite-card img {
        height: 150px;
    }
    
    .favorite-card h3 {
        font-size: 18px;
    }
    
    .favorite-card h4 {
        font-size: 12px;
    }
    
    .scenario-card img {
        height: 250px;
    }
    
    .scenario-card h3 {
        font-size: 20px;
        padding: 16px;
    }
    
    .scenario-card h4 {
        font-size: 14px;
        padding: 0 16px 12px;
    }
    
    .scenario-link {
        margin: 0 16px 16px;
    }
    
    .brand-equity-header h2 {
        font-size: 24px;
    }
    
    .brand-equity-header p {
        font-size: 16px;
    }
    
    .brand-equity-item {
        padding: 16px;
        height: auto;
        min-height: 150px;
    }
    
    .brand-equity-header-item h3 {
        font-size: 14px;
    }
    
    .brand-equity-item p {
        font-size: 12px;
    }
    
    .stats-wrapper {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .brand-equity-grid {
        width: 100%;
        max-width: 100%;
    }
    
    .membership-content {
        min-height: 300px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .membership-text {
        width: 100%;
        max-width: 100%;
    }
    
    .membership-text h2 {
        font-size: 24px;
    }
    
    .membership-text p {
        font-size: 14px;
    }
    
    .membership-buttons .rounded-btn {
        width: 100%;
        text-align: center;
    }
    
    .know-us-card {
        padding: 40px 20px;
    }
    
    .know-us-card h3 {
        font-size: 20px;
    }
    
    .customer-review-card {
        height: auto;
        min-height: 400px;
    }
}
