/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #000;
}

/* 容器样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
    background-color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    color: #e91e63;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-menu a {
    color: #191919;
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 500;
}

.navbar-menu a:hover {
    color: #c8b448;
}

.content a {
    color:#e91e63;
}
/* 移动端折叠按钮样式 */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #c8b448;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* 折叠菜单样式 */
.navbar-collapse {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.navbar-collapse a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
}

.navbar-collapse a:hover {
    color: #c8b448;
}

.navbar-collapse .btn-primary {
    margin-top: 15px;
    align-self: flex-start;
}

/* 显示折叠菜单 */
.navbar-collapse.active {
    display: flex;
}

/* 旋转折叠按钮 */
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.btn-primary {
    background-color: #c8b448;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d4c36a;
}

/* 邀请banner样式 */
.invite-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/sugar-mommy-dating.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
    border-bottom: 3px solid #c8b448;
}

.invite-banner h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.invite-banner p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Hero 区域样式 */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.46)), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero .btn-primary {
    font-size: 18px;
    padding: 12px 30px;
}

/* Features 特性区域样式 */
.features {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    margin: 10px;
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #c8b448;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-item h3 {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

/* Statistics 统计数据区域样式 */
.statistics {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.statistics .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    margin: 10px;
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.stat-item h2 {
    font-size: 48px;
    color: #c8b448;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
}

/* 关于糖约会的内容区域样式 */
.about-sugar-dating {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-sugar-dating h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.about-sugar-dating > p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
}

.about-sugar-dating .content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-sugar-dating .content p {
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

/* 关于糖爹的内容区域样式 */
.about-sugar-daddy {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-sugar-daddy h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.about-sugar-daddy .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-sugar-daddy .section-image {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
}

.about-sugar-daddy .section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-sugar-daddy .section-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.about-sugar-daddy .content {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
}

.about-sugar-daddy .content p {
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

/* 关于糖宝贝的内容区域样式 */
.about-sugar-baby {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-sugar-baby h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.about-sugar-baby .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.about-sugar-baby .section-image {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
}

.about-sugar-baby .section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-sugar-baby .section-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.about-sugar-baby .content {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
}

.about-sugar-baby .content p {
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

/* 关于糖妈的内容区域样式 */
.about-sugar-mummy {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-sugar-mummy h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.about-sugar-mummy .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-sugar-mummy .section-image {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
}

.about-sugar-mummy .section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-sugar-mummy .section-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.about-sugar-mummy .content {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
}

.about-sugar-mummy .content p {
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

/* 关于App的内容区域样式 */
.about-app {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-app h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.about-app .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-app .app-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.about-app .app-image {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
    text-align: center;
}

.about-app .app-image img {
    max-width: 250px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-app .app-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.about-app .app-text {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
}

.about-app .app-text h3 {
    font-size: 24px;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-app .app-text p {
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

.about-app .app-buttons {
    margin-top: 30px;
}

.about-app .btn-app {
    background-color: #c8b448;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-app .btn-app:hover {
    background-color: #d4c36a;
    transform: translateY(-2px);
}

/* 地区展示板块样式 */
.regions {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.regions h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.regions .regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.regions .region-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regions .region-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.regions .region-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.regions .region-item:hover img {
    transform: scale(1.1);
}

.regions .region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
    padding: 30px 20px 20px;
    transition: padding 0.3s ease;
}

.regions .region-item:hover .region-overlay {
    padding-top: 40px;
}

.regions .region-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.regions .region-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* 成功案例推荐板块样式 */
.testimonials {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.testimonials h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials .testimonial-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.testimonials .testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.testimonials .testimonial-rating {
    margin-bottom: 20px;
}

.testimonials .testimonial-rating .star {
    color: #c8b448;
    font-size: 20px;
    margin: 0 2px;
}

.testimonials .testimonial-text p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonials .testimonial-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
    margin: 0;
}

/* FAQ 板块样式 */
.faq {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.faq h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #2a2a2a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq .faq-question:hover {
    background-color: #333;
}

.faq .faq-question h3 {
    font-size: 18px;
    color: #e0e0e0;
    margin: 0;
    font-weight: 600;
}

.faq .faq-toggle {
    font-size: 24px;
    color: #c8b448;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq .faq-toggle.active {
    transform: rotate(45deg);
}

.faq .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq .faq-answer.active {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq .faq-answer p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* 页脚样式 */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer .container {
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e91e63;
    font-weight: 700;
}

.footer-brand p {
    font-size: 14px;
    color: #ccc;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

.footer-local-dating h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #e91e63;
    font-weight: 600;
}

.local-cities {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 120px;
    gap: 10px 40px;
}

.local-cities a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.local-cities a:hover {
    color: #e91e63;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* About页面样式 */
.about-content {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-content h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.about-content .content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content .content p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 价值观区域样式 */
.our-values {
    padding: 100px 0;
    background-color: #000;
}

.our-values h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #c8b448;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.value-item h3 {
    font-size: 20px;
    color: #c8b448;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* 团队成员区域样式 */
.our-team {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.our-team h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

.team-member h3 {
    font-size: 18px;
    color: #c8b448;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-member p {
    font-size: 14px;
    color: #e0e0e0;
}

/* How It Works页面样式 */
.how-it-works {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.how-it-works h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #c8b448;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    color: #c8b448;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Features How It Works页面样式 */
.features-how {
    padding: 100px 0;
    background-color: #000;
}

.features-how h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-how-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-how-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.feature-how-item .feature-icon {
    width: 60px;
    height: 60px;
    background-color: #c8b448;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-how-item h3 {
    font-size: 18px;
    color: #c8b448;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-how-item p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Contact页面样式 */
.contact {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.contact-content {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #c8b448;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 18px;
    color: #c8b448;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text p {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 40px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8b448;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    margin-top: 10px;
}

/* App页面样式 */
.app-intro {
    padding: 100px 0;
    background-color: #000;
    text-align: center;
}

.app-intro h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.app-features {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.app-features h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.app-feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.app-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.app-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background-color: #c8b448;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.app-feature-item h3 {
    font-size: 18px;
    color: #c8b448;
    margin-bottom: 15px;
    font-weight: 600;
}

.app-feature-item p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* App Screenshots 区域样式 */
.app-screenshots {
    padding: 100px 0;
    background-color: #000;
}

.app-screenshots h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Download 区域样式 */
.download-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.download-section h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 20px;
    font-weight: 700;
}

.download-section p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* App 按钮样式 */
.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-app {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border: 2px solid #c8b448;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-app:hover {
    background-color: #c8b448;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 180, 72, 0.3);
}

/* NZ Sugar Daddy 页面样式 */
.nz-sugar-daddy-intro {
    padding: 100px 0;
    background-color: #000;
    text-align: center;
}

.nz-sugar-daddy-intro h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 30px;
    font-weight: 700;
}

.nz-sugar-daddy-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.nz-sugar-daddy-intro .intro-content p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 新西兰城市区域样式 */
.nz-cities {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.nz-cities h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.city-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.city-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 1;
}

.city-item h3,
.city-item p {
    position: relative;
    z-index: 2;
}

.city-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.city-item h3 {
    font-size: 18px;
    color: #c8b448;
    margin-bottom: 15px;
    font-weight: 600;
}

.city-item p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* 城市背景图片 */
.city-auckland {
    background-image: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Auckland%20skyline%20cityscape%20New%20Zealand%20modern%20buildings&image_size=landscape_16_9');
}

.city-wellington {
    background-image: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Wellington%20harbor%20city%20New%20Zealand%20government%20buildings&image_size=landscape_16_9');
}

.city-christchurch {
    background-image: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Christchurch%20city%20garden%20city%20New%20Zealand&image_size=landscape_16_9');
}

.city-queenstown {
    background-image: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Queenstown%20mountains%20lake%20adventure%20New%20Zealand&image_size=landscape_16_9');
}

.city-dunedin {
    background-image: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Dunedin%20student%20city%20heritage%20buildings%20New%20Zealand&image_size=landscape_16_9');
}

.city-tauranga {
    background-image: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Tauranga%20Bay%20of%20Plenty%20coastal%20city%20New%20Zealand&image_size=landscape_16_9');
}

/* 成功故事区域样式 */
.nz-success-stories {
    padding: 100px 0;
    background-color: #000;
}

.nz-success-stories h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.stories-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.story-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 450px;
    display: flex;
    gap: 20px;
}

.story-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #c8b448;
    flex-shrink: 0;
}

.story-content {
    flex: 1;
}

.story-content .stars {
    color: #c8b448;
    font-size: 18px;
    margin-bottom: 15px;
}

.story-content p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-content h4 {
    font-size: 14px;
    color: #c8b448;
    font-weight: 600;
}

/* 如何开始区域样式 */
.nz-how-it-works {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.nz-how-it-works h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #c8b448;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
}

.step-item h3 {
    font-size: 18px;
    color: #c8b448;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-item p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 100%;
}

/* What is a Sugar Daddy 区域样式 */
.what-is-sugar-daddy {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.sugar-daddy-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.sugar-daddy-text {
    flex: 1;
}

.sugar-daddy-text h2 {
    font-size: 32px;
    color: #c8b448;
    margin-bottom: 30px;
    font-weight: 700;
}

.sugar-daddy-text p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.sugar-daddy-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sugar-daddy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .features,
    .statistics,
    .about-sugar-dating,
    .about-sugar-daddy {
        padding: 60px 0;
    }
    
    .features .container,
    .statistics .container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item,
    .stat-item {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }
    
    .about-sugar-dating h2,
    .about-sugar-daddy h2,
    .about-sugar-baby h2,
    .about-sugar-mummy h2 {
        font-size: 24px;
    }
    
    .about-sugar-daddy .container,
    .about-sugar-baby .container,
    .about-sugar-mummy .container,
    .about-app .container {
        flex-direction: column;
    }
    
    .about-sugar-daddy .section-image,
    .about-sugar-baby .section-image,
    .about-sugar-mummy .section-image,
    .about-sugar-daddy .content,
    .about-sugar-baby .content,
    .about-sugar-mummy .content,
    .about-app .app-image,
    .about-app .app-text {
        margin: 0 0 30px 0;
    }
    
    .about-app .app-content {
        flex-direction: column;
    }
    
    .regions .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .regions .region-item img {
        height: 200px;
    }
    
    .testimonials .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 30px;
    }
    
    .footer-links {
        justify-content: center;
        margin-bottom: 30px;
        align-items: center;
    }
    
    .footer-links a {
        margin: 0 10px 10px 0;
    }
    
    .footer-local-dating {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .local-cities {
        flex-direction: row;
        max-height: none;
        justify-content: center;
    }
    
    .local-cities a {
        margin: 0 10px 10px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero h2 {
        font-size: 16px;
    }
    
    .features,
    .statistics,
    .about-sugar-dating,
    .about-sugar-daddy,
    .about-sugar-baby,
    .about-sugar-mummy,
    .about-app,
    .regions,
    .testimonials,
    .faq,
    .invite-banner,
    .about-content,
    .our-values,
    .our-team,
    .how-it-works,
    .features-how,
    .contact,
    .app-intro,
    .app-features,
    .app-screenshots,
    .download-section,
    .nz-sugar-daddy-intro,
    .nz-cities,
    .nz-success-stories,
    .nz-how-it-works,
    .what-is-sugar-daddy {
        padding: 60px 0;
    }
    
    .feature-item,
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item h2 {
        font-size: 36px;
    }
    
    .regions .regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .regions .region-item img {
        height: 150px;
    }
    
    .testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* About页面响应式样式 */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* How It Works页面响应式样式 */
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact页面响应式样式 */
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 15px;
    }
    
    /* App页面响应式样式 */
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-app {
        width: 200px;
        justify-content: center;
    }
    
    /* NZ Sugar Daddy 页面响应式样式 */
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stories-container {
        flex-direction: column;
        align-items: center;
    }
    
    .story-item {
        max-width: 100%;
        flex-direction: column;
        text-align: center;
    }
    
    .story-avatar {
        margin: 0 auto;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* What is a Sugar Daddy 响应式样式 */
    .sugar-daddy-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .sugar-daddy-text {
        order: 2;
    }
    
    .sugar-daddy-image {
        order: 1;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}