:root {
    --primary-red: #c1272d;
    --primary-orange: #e67e22;
    --accent-gold: #d4af37;
    --dark-brown: #5d4037;
    --light-beige: #f8f5f0;
    --text-dark: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

body {
    background-color: var(--light-beige);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 245, 240, 0.95);
    z-index: -1;
}

/* 顶部导航 */
.navbar {
    background: linear-gradient(to right, var(--primary-red), var(--dark-brown));
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    flex-direction: column;
    z-index: 1001;
}
.logo img {
    height: 30px;
    margin-right: 15px;
}
.logo-text {
    color: white;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Ma Shan Zheng', cursive;
}

.logo-text span {
    color: var(--accent-gold);
}

.slogan {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 2px;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav-links a.active {
    background: var(--accent-gold);
    color: var(--dark-brown);
}

/* 移动端菜单切换 */
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(to bottom, var(--primary-red), var(--dark-brown));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 20px;
    }

    .franchise-stats {
        grid-template-columns: 1fr;
    }
}

/* 英雄区域 */
.index-hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../images/index_bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.index-hero .hero-content {
    max-width: 1000px;
    padding: 20px;
    z-index: 2;
}

.index-hero h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Ma Shan Zheng', cursive;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    color: var(--accent-gold);
}

.index-hero p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.index-hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--dark-brown);
}

.btn-primary:hover {
    background: #e6c451;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    border: 2px solid var(--accent-gold);
    color: white;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

/* 品牌特色 */
.features {
    padding: 100px 5%;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-red);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Ma Shan Zheng', cursive;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.feature-card {
    background: var(--light-beige);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-img {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.feature-content {
    padding: 30px;
    text-align: center;
}

.feature-content h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-family: 'Ma Shan Zheng', cursive;
}

.feature-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* 热销产品 */
.products {
    padding: 100px 5%;
    background: white;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1500px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 1;
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-content h3 {
    font-size: 1.6rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.product-flavor {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.product-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.product-price {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 15px;
}

/* 品牌故事摘要 */
.brand-story {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
    position: relative;
}

.story-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-family: 'Ma Shan Zheng', cursive;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #555;
}

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* 招商加盟摘要 */
.franchise {
    padding: 100px 5%;
    background: linear-gradient(rgba(93, 64, 55, 0.9), rgba(93, 64, 55, 0.9)),
    url('../images/common_bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.franchise-content {
    max-width: 800px;
    margin: 0 auto;
}

.franchise h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-family: 'Ma Shan Zheng', cursive;
    color: var(--accent-gold);
}

.franchise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.franchise-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.franchise-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.franchise-stat-text {
    font-size: 1.2rem;
}

/* 用户评价 */
.testimonials {
    padding: 100px 5%;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial-card {
    background: var(--light-beige);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 4px solid var(--accent-gold);
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(192, 39, 45, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 15px;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.author-info h4 {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.author-info p {
    color: var(--primary-orange);
    font-size: 0.95rem;
}

/* 门店展示 */
.stores {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
}

.stores-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.store-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 350px;
}

.store-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover img {
    transform: scale(1.1);
}

.store-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
}

.store-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.store-info p {
    font-size: 1rem;
    opacity: 0.8;
}

/* 新闻动态 */
.news {
    padding: 100px 5%;
    background: white;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.news-card {
    background: var(--light-beige);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.news-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 底部 */
.footer {
    background: linear-gradient(to right, var(--dark-brown), #3e2723);
    color: white;
    padding: 70px 5% 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .index-hero h2 {
        font-size: 3rem;
    }

    .index-hero p {
        font-size: 1.4rem;
    }

    .story-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* 底部 */
footer {
    background: linear-gradient(to right, var(--dark-brown), #3e2723);
    color: white;
    padding: 50px 5% 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.social-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.social-icons span:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}
#qr-code {
    position: fixed;
    z-index: 1000;
}

/* 品牌故事英雄区域 */
 .brand-hero {
     height: 70vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
     background: linear-gradient(rgba(93, 64, 55, 0.7), rgba(93, 64, 55, 0.7)),
     url('../images/brand_bg.jpg');
     background-size: cover;
     background-position: center;
     color: white;
 }

.brand-hero .hero-content {
    max-width: 1000px;
    padding: 20px;
    z-index: 2;
}

.brand-hero h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Ma Shan Zheng', cursive;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    color: var(--accent-gold);
}

.brand-hero p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

/* 时间线部分 */
.timeline-section {
    padding: 80px 5%;
    background: white;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-red);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Ma Shan Zheng', cursive;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-gold);
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: var(--light-beige);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 40px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -10px;
    border-right: 1px solid var(--accent-gold);
    border-top: 1px solid var(--accent-gold);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    border-left: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
}

.timeline-year {
    position: absolute;
    top: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid var(--light-beige);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-family: 'Ma Shan Zheng', cursive;
}

/* 六个一的展示 */
.six-ones-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
    text-align: center;
}

.six-ones-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.one-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 5px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.one-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.one-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.1;
}

.one-number {
    font-size: 5rem;
    color: rgba(193, 39, 45, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Ma Shan Zheng', cursive;
}

.one-title {
    font-size: 2rem;
    color: var(--dark-brown);
    margin: 20px 0;
    font-family: 'Ma Shan Zheng', cursive;
}

.one-subtitle {
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.one-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* 今日成就部分 */
.achievement-section {
    padding: 100px 5%;
    background: white;
}

.achievement-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.achievement-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.9;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    background: var(--light-beige);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-family: 'Ma Shan Zheng', cursive;
}

.stat-text {
    font-size: 1.2rem;
    color: var(--dark-brown);
}

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.partner-logo {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* 愿景部分 */
.vision-section {
    padding: 100px 5%;
    background: linear-gradient(rgba(93, 64, 55, 0.9), rgba(93, 64, 55, 0.9)),
    url('../images/common_bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-title {
    font-size: 3rem;
    margin-bottom: 40px;
    font-family: 'Ma Shan Zheng', cursive;
    color: var(--accent-gold);
}

.vision-statement {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 40px;
    font-style: italic;
}

.vision-quote {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 30px;
    border-left: 4px solid var(--accent-gold);
    background: rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
}

.vision-quote::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 20px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
}

.founder-signature {
    text-align: right;
    margin-top: 20px;
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-family: 'Ma Shan Zheng', cursive;
}
/* 响应式调整 */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }

    .timeline-year {
        left: 0;
        transform: none;
    }

    .timeline-content {
        width: 100%;
        margin: 20px 0 !important;
    }

    .timeline-content::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .brand-hero h2 {
        font-size: 3rem;
    }

    .brand-hero p {
        font-size: 1.4rem;
    }

    .one-title {
        font-size: 1.8rem;
    }

    .one-subtitle {
        font-size: 1.2rem;
    }
}

/* 英雄区域 */
 .product-hero {
     height: 80vh;
     background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
     url('../images/product_bg.jpg');
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }

.product-hero .hero-content {
    max-width: 1000px;
    padding: 20px;
    z-index: 2;
}

.product-hero h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Ma Shan Zheng', cursive;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    color: var(--accent-gold);
}

.product-hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.brand-values {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.value-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 产品特色部分 */
.features {
    padding: 80px 5%;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
}

.section-title p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
}

.feature-card {
    background: var(--light-beige);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 口感体验部分 */
.taste-experience {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
    position: relative;
    overflow: hidden;
}

.taste-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.taste-chart {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto;
}

.taste-desc {
    flex: 1;
    min-width: 300px;
}

.taste-desc h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.taste-desc p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

/* 用户评价部分 */
.testimonials {
    padding: 80px 5%;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light-beige);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    border-top: 4px solid var(--accent-gold);
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(192, 39, 45, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 15px;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.author-info h4 {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.author-info p {
    color: var(--primary-orange);
    font-size: 0.95rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .product-hero {
        height: auto;
    }

    .product-hero h2 {
        font-size: 2.5rem;
    }

    .product-hero p {
        font-size: 1.1rem;
    }

    .brand-values {
        flex-direction: column;
        align-items: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* 招商英雄区域 */
 .business-hero {
     height: 80vh;
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
     url('../images/business_bg.jpg');
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }

.business-hero .hero-content {
    max-width: 1000px;
    padding: 20px;
    z-index: 2;
}

.business-hero h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Ma Shan Zheng', cursive;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    color: var(--accent-gold);
}

.business-hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--dark-brown);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: #e6c451;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    border: 2px solid var(--accent-gold);
    color: white;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

/* 加盟优势部分 */
.advantages {
    padding: 80px 5%;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.advantage-card {
    background: var(--light-beige);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-bottom: 4px solid var(--accent-gold);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.advantage-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* 加盟政策 */
.policies {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
}

.policy-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.policy-content {
    flex: 1;
    min-width: 300px;
}

.policy-content h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.policy-list {
    list-style: none;
}

.policy-list li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.policy-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
    content: "\f00c";
    font-size: 0.9rem;
}

.policy-list h4 {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.policy-list p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.policy-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.policy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.policy-image:hover img {
    transform: scale(1.05);
}

/* 品牌实力 */
.brand-strength {
    padding: 80px 5%;
    background: white;
}

.stat-card {
    background: var(--light-beige);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 1.2rem;
    color: var(--dark-brown);
    font-weight: 600;
}

/* 共赢典范 */
.success-cases {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
}

.cases-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.case-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.case-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.partner-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.partner-info h4 {
    color: var(--dark-brown);
    font-size: 1.1rem;
}

.partner-info p {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin: 0;
}

/* 门店展示 */
.stores-showcase {
    padding: 80px 5%;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.store-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .store-info {
    transform: translateY(0);
}

.store-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.store-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 合伙人见证 */
.partner-testimonials {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
}

.testimonials-container {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin: 20px;
    position: relative;
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(192, 39, 45, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 20px;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--primary-orange);
    font-size: 1rem;
}

/* 加盟流程 */
.process-section {
    padding: 80px 5%;
    background: white;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-steps:before {
    content: "";
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--accent-gold);
    z-index: 0;
}

.step-card {
    background: white;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
    border: 3px solid var(--accent-gold);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.step-text {
    font-size: 1.1rem;
    color: var(--dark-brown);
    font-weight: 600;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .business-hero h2 {
        font-size: 2.5rem;
    }

    .business-hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .process-steps:before {
        display: none;
    }

    .step-card {
        width: 150px;
        height: 150px;
    }
}

/* 联系我们英雄区域 */
 .contact-hero {
     height: 60vh;
     background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
     url('../images/contact_bg.jpg');
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }

.contact-hero .hero-content {
    max-width: 1000px;
    padding: 20px;
    z-index: 2;
}

.contact-hero h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Ma Shan Zheng', cursive;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    color: var(--accent-gold);
}

.contact-hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 联系信息部分 */
.contact-info {
    padding: 80px 5%;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--light-beige);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-red);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.info-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.info-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.info-card a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* 联系表单部分 */
.contact-form-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.form-content {
    padding: 30px;
}

.form-content h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.form-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.form-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-brown);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.2);
}

.btn-submit {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #a51f25;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 39, 45, 0.4);
}

/* 地图部分 */
.map-section {
    padding: 80px 5%;
    /*background: white;*/
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 100%;
}

/* 团队展示 */
.team-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #faf7f2, #fff6eb);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-img {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.team-content .position {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-beige);
    border-radius: 50%;
    color: var(--primary-red);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.team-contact a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

/* 常见问题 */
.faq-section {
    padding: 80px 5%;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background: var(--light-beige);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f0e6d8;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

.faq-answer p {
    padding: 20px 0;
    line-height: 1.7;
    color: #555;
}

.faq-item.active .faq-question {
    background: var(--primary-red);
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* 创始人寄语 */
.founder-message {
    padding: 80px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/common_bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(93, 64, 55, 0.8);
    border-radius: 12px;
}

.founder-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.founder-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.founder-signature {
    text-align: right;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .form-container {
        grid-template-columns: 1fr;
    }

    .form-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero h2 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .map-container {
        height: 350px;
    }
    .info-container {
        display: block;
    }
}