/* service.css - 服务详情页面样式 */

/* ===== 基础样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== 导航栏样式 ===== */
.nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 10px;
    z-index: 10;
    transition: all 0.3s ease;
    height: 80px;
    background-color: transparent;
}

.nav-bar.scrolled {
    position: fixed;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.nav-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.menu-button {
    background: none;
    border: none;
    color: white;
    font-size: 4em;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 11;
}

.menu-button.scrolled {
    color: black;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 25px;
}

.logo-white, .logo-black {
    height: 40px;
    transition: all 0.3s ease;
}

.logo-black {
    display: none;
}

.logo-white {
    display: block;
}

.logo.scrolled .logo-white {
    display: none;
}

.logo.scrolled .logo-black {
    display: block;
}

/* ===== 下拉菜单 ===== */
.dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 66.67vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 20;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dropdown.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.dropdown.closing {
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-100%); opacity: 0; }
}

.close-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 4em;
    font-weight: 100;
    cursor: pointer;
    line-height: 1;
}

.dropdown-logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-logo img {
    height: 2em;
}

.nav-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: calc(100% - 80px);
    margin-top: 80px;
}

.nav-link {
    color: white;
    font-family: 'SimSun', serif;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    font-size: 21px;
}

/* ===== 向下箭头 ===== */
.down-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 1s infinite;
    bottom: 25px;
}

.down-arrow img {
    height: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== 页脚 ===== */
footer {
    background: black;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
}

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

.footer-branch {
    width: 300px;
    margin: 20px;
    text-align: left;
}

.footer-branch h3 {
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.footer-branch p {
    font-family: 'SimSun', serif;
    color: #ddd;
    line-height: 1.6;
    margin: 5px 0;
}

.footer-qr {
    width: 200px;
    height: auto;
    margin-top: 10px;
    border: 2px solid white;
    border-radius: 5px;
}

.footer-copyright {
    margin-top: 20px;
    font-family: 'SimSun', serif;
    color: #aaa;
}

/* ===== 右侧悬浮联系按钮 ===== */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-button {
    position: relative;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.contact-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.contact-qr {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    padding: 5px;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.contact-button:hover .contact-qr {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.contact-button:hover .contact-logo {
    opacity: 0.7;
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
    .menu-button {
        font-size: 3em;
    }

    .close-button {
        font-size: 3em;
    }

    .down-arrow {
        bottom: 15px;
    }

    .down-arrow img {
        height: 15px;
    }

    .footer-top, .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-branch {
        width: 100%;
        margin: 15px 0;
    }

    footer {
        padding: 30px 15px;
    }

    .floating-contact {
        right: 15px;
        bottom: 80px;
    }

    .contact-button {
        width: 45px;
        height: 45px;
    }

    .contact-logo {
        width: 22px;
        height: 22px;
    }

    .contact-qr {
        width: 100px;
        height: 100px;
        right: 55px;
    }

    /* 移动端触摸激活 */
    .contact-button.active .contact-qr {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    .contact-button.active .contact-logo {
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 18px;
    }

    .nav-link:hover {
        font-size: 19px;
    }

    .floating-contact {
        right: 10px;
        bottom: 70px;
    }

    .contact-button {
        width: 40px;
        height: 40px;
    }

    .contact-logo {
        width: 20px;
        height: 20px;
    }

    .contact-qr {
        width: 90px;
        height: 90px;
        right: 50px;
    }
}


/* ===== GEO AI 页面样式 ===== */
/* 注：以下样式专为 geo-ai.html 页面设计 */

.geo-ai .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.geo-ai .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.geo-ai .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.geo-ai .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.geo-ai .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.geo-ai .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.geo-ai .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 30px 0;
    color: #333;
    background: transparent;
}

.geo-ai .subsection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 40px 0 20px 0;
    color: #333;
    background: transparent;
}

.geo-ai .subsubsection-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 30px 0 15px 0;
    color: #333;
    background: transparent;
}

.geo-ai .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 20px;
}

.geo-ai .content-text p {
    margin-bottom: 15px;
}

.geo-ai .image-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    background: transparent;
}

.geo-ai .content-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.geo-ai .image-caption {
    font-size: 0.9em;
    color: #888;
    font-style: italic;
    background: transparent;
}

.geo-ai .comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-collapse: collapse;
    background: transparent;
}

.geo-ai .comparison-table th,
.geo-ai .comparison-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    vertical-align: top;
    background: transparent;
}

.geo-ai .comparison-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.geo-ai .comparison-table tr:hover {
    background-color: #f9f9f9;
}

.geo-ai .ul-list, .geo-ai .ol-list {
    margin: 20px 0 20px 40px;
    background: transparent;
}

.geo-ai .ul-list li, .geo-ai .ol-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.geo-ai .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    background: transparent;
    border-left: 4px solid #333;
}

.geo-ai .highlight-box p {
    margin: 0;
    font-style: italic;
    color: #333;
    background: transparent;
}

.geo-ai .dimension-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.geo-ai .dimension-item {
    background: transparent;
    padding: 0;
    border: none;
}

.geo-ai .dimension-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.geo-ai .dimension-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.geo-ai .methodology-section {
    margin: 60px 0;
    background: transparent;
}

.geo-ai .methodology-item {
    margin-bottom: 40px;
    background: transparent;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .geo-ai .hero-title {
        font-size: 2.5em;
    }

    .geo-ai .hero-subtitle {
        font-size: 1.3em;
    }

    .geo-ai .section-title {
        font-size: 1.8em;
    }

    .geo-ai .subsection-title {
        font-size: 1.5em;
    }

    .geo-ai .subsubsection-title {
        font-size: 1.3em;
    }

    .geo-ai .content-section {
        padding: 60px 20px;
    }

    .geo-ai .comparison-table {
        font-size: 0.9em;
    }

    .geo-ai .comparison-table th,
    .geo-ai .comparison-table td {
        padding: 10px;
    }

    .geo-ai .dimension-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .geo-ai .ul-list, .geo-ai .ol-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .geo-ai .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .geo-ai .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .geo-ai .section-title {
        font-size: 1.6em;
    }

    .geo-ai .content-text {
        font-size: 1em;
    }

    .geo-ai .comparison-table {
        display: block;
        overflow-x: auto;
    }
}






/* ===== 百度SEO页面样式 ===== */
/* 注：以下样式专为 baidu-seo.html 页面设计 */

.baidu-seo .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.baidu-seo .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.baidu-seo .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.baidu-seo .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.baidu-seo .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.baidu-seo .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.baidu-seo .main-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
    line-height: 1.3;
    background: transparent;
}

.baidu-seo .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 30px 0;
    color: #333;
    background: transparent;
}

.baidu-seo .subsection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 40px 0 20px 0;
    color: #333;
    background: transparent;
}

.baidu-seo .subsubsection-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 30px 0 15px 0;
    color: #333;
    background: transparent;
}

.baidu-seo .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 20px;
}

.baidu-seo .content-text p {
    margin-bottom: 15px;
}

.baidu-seo .list-title {
    font-size: 1.3em;
    font-weight: bold;
    margin: 25px 0 15px 0;
    color: #333;
    background: transparent;
}

.baidu-seo .rule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.baidu-seo .rule-item {
    background: transparent;
    padding: 0;
    border: none;
}

.baidu-seo .rule-number {
    font-size: 2em;
    font-weight: bold;
    color: #2c80ff;
    margin-bottom: 15px;
    background: transparent;
}

.baidu-seo .rule-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.baidu-seo .rule-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.baidu-seo .strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.baidu-seo .strategy-item {
    background: transparent;
    padding: 0;
    border: none;
}

.baidu-seo .strategy-number {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c80ff;
    margin-bottom: 10px;
    background: transparent;
}

.baidu-seo .strategy-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.baidu-seo .strategy-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.baidu-seo .mistake-section {
    margin: 50px 0;
    background: transparent;
}

.baidu-seo .mistake-item {
    margin-bottom: 35px;
    background: transparent;
}

.baidu-seo .mistake-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #e74c3c;
    background: transparent;
}

.baidu-seo .mistake-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.baidu-seo .optimization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.baidu-seo .optimization-item {
    background: transparent;
    padding: 0;
    border: none;
}

.baidu-seo .optimization-number {
    font-size: 1.5em;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 10px;
    background: transparent;
}

.baidu-seo .optimization-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.baidu-seo .optimization-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.baidu-seo .ul-list, .baidu-seo .ol-list {
    margin: 20px 0 20px 40px;
    background: transparent;
}

.baidu-seo .ul-list li, .baidu-seo .ol-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.baidu-seo .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #2c80ff;
    padding: 20px;
    margin: 30px 0;
    background: transparent;
    border-left: 4px solid #333;
}

.baidu-seo .highlight-box p {
    margin: 0;
    font-style: italic;
    color: #333;
    background: transparent;
}

.baidu-seo .tip-box {
    background: transparent;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.baidu-seo .tip-title {
    font-weight: bold;
    color: #2c80ff;
    margin-bottom: 10px;
    background: transparent;
}

.baidu-seo .tip-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .baidu-seo .hero-title {
        font-size: 2.5em;
    }

    .baidu-seo .hero-subtitle {
        font-size: 1.3em;
    }

    .baidu-seo .main-title {
        font-size: 2.2em;
    }

    .baidu-seo .section-title {
        font-size: 1.8em;
    }

    .baidu-seo .subsection-title {
        font-size: 1.5em;
    }

    .baidu-seo .subsubsection-title {
        font-size: 1.3em;
    }

    .baidu-seo .content-section {
        padding: 60px 20px;
    }

    .baidu-seo .rule-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .baidu-seo .strategy-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .baidu-seo .optimization-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .baidu-seo .ul-list, .baidu-seo .ol-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .baidu-seo .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .baidu-seo .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .baidu-seo .main-title {
        font-size: 1.8em;
        padding: 0 10px;
    }

    .baidu-seo .section-title {
        font-size: 1.6em;
    }

    .baidu-seo .content-text {
        font-size: 1em;
    }

    .baidu-seo .rule-number {
        font-size: 1.8em;
    }

    .baidu-seo .strategy-number, .baidu-seo .optimization-number {
        font-size: 1.3em;
    }
}




/* ===== 網站建設頁面樣式 ===== */
/* 注：以下樣式專為 create-website.html 頁面設計 */

.create-website .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.create-website .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.create-website .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.create-website .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.create-website .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.create-website .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.create-website .overview-section {
    text-align: center;
    margin-bottom: 60px;
    background: transparent;
}

.create-website .overview-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    background: transparent;
}

.create-website .overview-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
}

.create-website .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 30px 0;
    color: #333;
    background: transparent;
}

.create-website .subsection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 40px 0 20px 0;
    color: #333;
    background: transparent;
}

.create-website .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.create-website .content-text p {
    margin-bottom: 15px;
}

.create-website .importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.create-website .importance-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.create-website .importance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.create-website .importance-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c80ff;
    background: transparent;
}

.create-website .importance-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.create-website .importance-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.create-website .technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.create-website .technology-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.create-website .technology-item:hover {
    transform: translateY(-5px);
}

.create-website .tech-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: transparent;
}

.create-website .tech-icon {
    font-size: 2em;
    margin-right: 15px;
    background: transparent;
}

.create-website .tech-icon.html {
    color: #e34c26;
}

.create-website .tech-icon.css {
    color: #264de4;
}

.create-website .tech-icon.js {
    color: #f0db4f;
}

.create-website .tech-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    background: transparent;
}

.create-website .tech-subtitle {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
    background: transparent;
}

.create-website .tech-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.create-website .highlight-box {
    background: #f8f9fa;
    padding: 25px;
    margin: 40px 0;
    border-radius: 10px;
    border-left: 4px solid #2c80ff;
}

.create-website .highlight-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.create-website .highlight-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.create-website .process-section {
    margin: 60px 0;
    background: transparent;
}

.create-website .process-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: transparent;
}

.create-website .process-item {
    display: flex;
    align-items: flex-start;
    background: transparent;
}

.create-website .process-number {
    background: #2c80ff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 20px;
    flex-shrink: 0;
}

.create-website .process-content {
    flex: 1;
    background: transparent;
}

.create-website .process-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    background: transparent;
}

.create-website .process-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.create-website .ul-list, .create-website .ol-list {
    margin: 20px 0 20px 40px;
    background: transparent;
}

.create-website .ul-list li, .create-website .ol-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .create-website .hero-title {
        font-size: 2.5em;
    }

    .create-website .hero-subtitle {
        font-size: 1.3em;
    }

    .create-website .overview-title {
        font-size: 2em;
    }

    .create-website .section-title {
        font-size: 1.8em;
    }

    .create-website .subsection-title {
        font-size: 1.5em;
    }

    .create-website .content-section {
        padding: 60px 20px;
    }

    .create-website .importance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .create-website .technology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .create-website .importance-item, .create-website .technology-item {
        padding: 20px;
    }

    .create-website .process-item {
        flex-direction: column;
    }

    .create-website .process-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .create-website .ul-list, .create-website .ol-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .create-website .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .create-website .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .create-website .overview-title {
        font-size: 1.8em;
    }

    .create-website .section-title {
        font-size: 1.6em;
    }

    .create-website .overview-text {
        font-size: 1em;
    }

    .create-website .content-text {
        font-size: 1em;
    }

    .create-website .importance-icon {
        font-size: 2em;
    }

    .create-website .tech-icon {
        font-size: 1.5em;
    }
}





/* ===== 小紅書頁面樣式 ===== */
/* 注：以下樣式專為 xiaohongshu.html 頁面設計 */

.xiaohongshu .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.xiaohongshu .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.xiaohongshu .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.xiaohongshu .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.xiaohongshu .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.xiaohongshu .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.xiaohongshu .section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    background: transparent;
}

.xiaohongshu .solution-header {
    text-align: center;
    margin-bottom: 60px;
    background: transparent;
}

.xiaohongshu .solution-main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #ff2442;
    margin-bottom: 20px;
    background: transparent;
}

.xiaohongshu .solution-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    color: #666;
    margin-bottom: 15px;
    background: transparent;
}

.xiaohongshu .solution-tagline {
    font-size: 1.4em;
    color: #888;
    font-style: italic;
    background: transparent;
}

.xiaohongshu .subsection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 50px 0 30px 0;
    color: #333;
    background: transparent;
}

.xiaohongshu .subsection-subtitle {
    font-size: 1.4em;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #333;
    background: transparent;
}

.xiaohongshu .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 20px;
}

.xiaohongshu .content-text p {
    margin-bottom: 15px;
}

.xiaohongshu .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.xiaohongshu .advantage-item {
    background: transparent;
    padding: 0;
    border: none;
    text-align: center;
}

.xiaohongshu .advantage-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff2442;
    background: transparent;
}

.xiaohongshu .advantage-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.xiaohongshu .advantage-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.xiaohongshu .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.xiaohongshu .benefit-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.xiaohongshu .benefit-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.xiaohongshu .benefit-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
    background: transparent;
}

.xiaohongshu .content-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.xiaohongshu .content-type-item {
    text-align: center;
    background: transparent;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.xiaohongshu .content-type-icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ff2442;
    background: transparent;
}

.xiaohongshu .content-type-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    background: transparent;
}

.xiaohongshu .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.xiaohongshu .feature-item {
    background: transparent;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.xiaohongshu .feature-icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ff2442;
    background: transparent;
}

.xiaohongshu .feature-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    background: transparent;
}

.xiaohongshu .feature-description {
    line-height: 1.5;
    color: #666;
    background: transparent;
}

.xiaohongshu .case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.xiaohongshu .case-study-item {
    background: transparent;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.xiaohongshu .case-study-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.xiaohongshu .case-study-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.xiaohongshu .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.xiaohongshu .stat-item {
    text-align: center;
    background: transparent;
    padding: 25px;
}

.xiaohongshu .stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #ff2442;
    margin-bottom: 10px;
    background: transparent;
}

.xiaohongshu .stat-description {
    font-size: 1.1em;
    color: #333;
    background: transparent;
}

.xiaohongshu .empowerment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.xiaohongshu .empowerment-item {
    background: transparent;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.xiaohongshu .empowerment-icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ff2442;
    background: transparent;
}

.xiaohongshu .empowerment-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    background: transparent;
}

.xiaohongshu .empowerment-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.xiaohongshu .brands-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.xiaohongshu .brand-item {
    text-align: center;
    background: transparent;
    padding: 20px;
}

.xiaohongshu .brand-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    background: transparent;
}

.xiaohongshu .ul-list, .xiaohongshu .ol-list {
    margin: 20px 0 20px 40px;
    background: transparent;
}

.xiaohongshu .ul-list li, .xiaohongshu .ol-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.xiaohongshu .highlight-box {
    background: #fff5f5;
    padding: 25px;
    margin: 40px 0;
    border-radius: 10px;
    border-left: 4px solid #ff2442;
}

.xiaohongshu .highlight-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.xiaohongshu .highlight-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .xiaohongshu .hero-title {
        font-size: 2.5em;
    }

    .xiaohongshu .hero-subtitle {
        font-size: 1.3em;
    }

    .xiaohongshu .solution-main-title {
        font-size: 2.2em;
    }

    .xiaohongshu .solution-subtitle {
        font-size: 1.5em;
    }

    .xiaohongshu .section-title {
        font-size: 2em;
    }

    .xiaohongshu .subsection-title {
        font-size: 1.6em;
    }

    .xiaohongshu .content-section {
        padding: 60px 20px;
    }

    .xiaohongshu .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .xiaohongshu .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .xiaohongshu .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .xiaohongshu .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .xiaohongshu .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .xiaohongshu .empowerment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .xiaohongshu .brands-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .xiaohongshu .ul-list, .xiaohongshu .ol-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .xiaohongshu .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .xiaohongshu .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .xiaohongshu .solution-main-title {
        font-size: 1.8em;
    }

    .xiaohongshu .solution-subtitle {
        font-size: 1.2em;
    }

    .xiaohongshu .solution-tagline {
        font-size: 1.1em;
    }

    .xiaohongshu .section-title {
        font-size: 1.8em;
    }

    .xiaohongshu .content-text {
        font-size: 1em;
    }

    .xiaohongshu .advantages-grid {
        grid-template-columns: 1fr;
    }

    .xiaohongshu .benefits-grid {
        grid-template-columns: 1fr;
    }

    .xiaohongshu .features-grid {
        grid-template-columns: 1fr;
    }

    .xiaohongshu .content-types {
        grid-template-columns: 1fr;
    }

    .xiaohongshu .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .xiaohongshu .brands-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .xiaohongshu .stat-number {
        font-size: 2em;
    }
}





/* ===== Google SEO頁面樣式 ===== */
/* 注：以下樣式專為 google-seo.html 頁面設計 */

.google-seo .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.google-seo .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.google-seo .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.google-seo .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.google-seo .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.google-seo .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.google-seo .guide-header {
    text-align: center;
    margin-bottom: 60px;
    background: transparent;
}

.google-seo .guide-main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    background: transparent;
}

.google-seo .guide-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    color: #666;
    margin-bottom: 30px;
    background: transparent;
}

.google-seo .guide-intro {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    background: transparent;
}

.google-seo .start-learning-btn {
    display: inline-block;
    background: #4285f4;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.google-seo .start-learning-btn:hover {
    background: #3367d6;
}

.google-seo .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 30px 0;
    color: #333;
    background: transparent;
}

.google-seo .subsection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 50px 0 25px 0;
    color: #333;
    background: transparent;
}

.google-seo .subsection-subtitle {
    font-size: 1.4em;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #333;
    background: transparent;
}

.google-seo .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.google-seo .content-text p {
    margin-bottom: 15px;
}

.google-seo .tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.google-seo .tutorial-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.google-seo .tutorial-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4285f4;
    background: transparent;
}

.google-seo .tutorial-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-seo .tutorial-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .importance-section {
    margin: 60px 0;
    background: transparent;
}

.google-seo .importance-title {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    background: transparent;
}

.google-seo .importance-intro {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    background: transparent;
}

.google-seo .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.google-seo .benefit-item {
    text-align: center;
    background: transparent;
    padding: 25px;
}

.google-seo .benefit-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4285f4;
    background: transparent;
}

.google-seo .benefit-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-seo .benefit-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.google-seo .principle-item {
    background: transparent;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.google-seo .principle-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-seo .principle-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .warning-box {
    background: #fff8e1;
    padding: 25px;
    margin: 40px 0;
    border-radius: 10px;
    border-left: 4px solid #ffa000;
}

.google-seo .warning-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-seo .warning-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .steps-section {
    margin: 60px 0;
    background: transparent;
}

.google-seo .step-item {
    margin-bottom: 50px;
    background: transparent;
}

.google-seo .step-number {
    display: inline-block;
    background: #4285f4;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 15px;
    margin-bottom: 15px;
}

.google-seo .step-content {
    background: transparent;
}

.google-seo .step-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-seo .step-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .tools-section {
    margin: 60px 0;
    background: transparent;
}

.google-seo .tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.google-seo .tool-item {
    background: transparent;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.google-seo .tool-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-seo .tool-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .tool-features {
    margin-top: 15px;
    background: transparent;
}

.google-seo .tool-features ul {
    margin-left: 20px;
    background: transparent;
}

.google-seo .tool-features li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .reminder-box {
    background: #e8f5e9;
    padding: 25px;
    margin: 40px 0;
    border-radius: 10px;
    border-left: 4px solid #4caf50;
}

.google-seo .reminder-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-seo .reminder-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .ul-list, .google-seo .ol-list {
    margin: 20px 0 20px 40px;
    background: transparent;
}

.google-seo .ul-list li, .google-seo .ol-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-seo .highlight-box {
    background: transparent;
    padding: 25px;
    margin: 40px 0;
    border-left: 4px solid #4285f4;
}

.google-seo .highlight-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-seo .highlight-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .google-seo .hero-title {
        font-size: 2.5em;
    }

    .google-seo .hero-subtitle {
        font-size: 1.3em;
    }

    .google-seo .guide-main-title {
        font-size: 2.2em;
    }

    .google-seo .guide-subtitle {
        font-size: 1.5em;
    }

    .google-seo .section-title {
        font-size: 1.8em;
    }

    .google-seo .subsection-title {
        font-size: 1.6em;
    }

    .google-seo .content-section {
        padding: 60px 20px;
    }

    .google-seo .importance-title {
        font-size: 1.8em;
    }

    .google-seo .tutorial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-seo .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-seo .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .google-seo .tools-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-seo .ul-list, .google-seo .ol-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .google-seo .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .google-seo .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .google-seo .guide-main-title {
        font-size: 1.8em;
    }

    .google-seo .guide-subtitle {
        font-size: 1.2em;
    }

    .google-seo .guide-intro {
        font-size: 1em;
    }

    .google-seo .section-title {
        font-size: 1.6em;
    }

    .google-seo .start-learning-btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .google-seo .content-text {
        font-size: 1em;
    }

    .google-seo .tutorial-item, .google-seo .tool-item {
        padding: 20px;
    }

    .google-seo .benefit-item {
        padding: 20px;
    }
}




/* ===== Google Ads頁面樣式 ===== */
/* 注：以下樣式專為 google-ad.html 頁面設計 */

.google-ad .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.google-ad .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.google-ad .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.google-ad .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.google-ad .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.google-ad .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.google-ad .ad-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.google-ad .ad-type-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.google-ad .ad-type-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-ad .ad-type-desc {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    background: transparent;
}

.google-ad .ad-type-url {
    font-size: 0.9em;
    color: #4285f4;
    background: transparent;
}

.google-ad .cta-section {
    text-align: center;
    margin: 60px 0;
    background: transparent;
}

.google-ad .cta-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 30px;
    background: transparent;
}

.google-ad .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.google-ad .cta-button {
    display: inline-block;
    background: #4285f4;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.google-ad .cta-button:hover {
    background: #3367d6;
}

.google-ad .cta-button.secondary {
    background: #34a853;
}

.google-ad .cta-button.secondary:hover {
    background: #2e8b47;
}

.google-ad .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 30px 0;
    color: #333;
    background: transparent;
    text-align: center;
}

.google-ad .subsection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 50px 0 25px 0;
    color: #333;
    background: transparent;
}

.google-ad .subsection-subtitle {
    font-size: 1.4em;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #333;
    background: transparent;
}

.google-ad .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.google-ad .content-text p {
    margin-bottom: 15px;
}

.google-ad .power-section {
    margin: 60px 0;
    background: transparent;
}

.google-ad .power-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    background: transparent;
}

.google-ad .power-text {
    flex: 1;
    background: transparent;
}

.google-ad .power-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.google-ad .power-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #4285f4;
    background: transparent;
}

.google-ad .offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.google-ad .offering-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.google-ad .offering-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background: transparent;
}

.google-ad .offering-amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #4285f4;
    margin-bottom: 15px;
    background: transparent;
}

.google-ad .offering-desc {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    background: transparent;
}

.google-ad .offering-button {
    display: inline-block;
    background: #ea4335;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.google-ad .offering-button:hover {
    background: #d23f33;
}

.google-ad .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.google-ad .goal-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.google-ad .goal-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4285f4;
    background: transparent;
}

.google-ad .goal-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-ad .goal-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-ad .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.google-ad .feature-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.google-ad .feature-icon {
    font-size: 2em;
    margin-bottom: 20px;
    color: #4285f4;
    background: transparent;
}

.google-ad .feature-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.google-ad .feature-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.google-ad .feature-stat {
    font-size: 2em;
    font-weight: bold;
    color: #34a853;
    margin: 20px 0 10px 0;
    background: transparent;
}

.google-ad .feature-stat-label {
    font-size: 1em;
    color: #666;
    background: transparent;
}

.google-ad .success-case {
    margin: 60px 0;
    background: transparent;
}

.google-ad .case-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: transparent;
}

.google-ad .case-text {
    flex: 1;
    background: transparent;
}

.google-ad .case-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.google-ad .case-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #4285f4;
    background: transparent;
}

.google-ad .case-stat {
    font-size: 2.5em;
    font-weight: bold;
    color: #ea4335;
    margin: 15px 0;
    background: transparent;
}

.google-ad .case-quote {
    font-style: italic;
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid #4285f4;
    background: transparent;
}

.google-ad .case-author {
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    background: transparent;
}

.google-ad .case-button {
    display: inline-block;
    background: #4285f4;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.google-ad .case-button:hover {
    background: #3367d6;
}

.google-ad .final-cta {
    text-align: center;
    margin: 80px 0 40px 0;
    background: transparent;
}

.google-ad .final-cta-text {
    font-size: 1.8em;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    background: transparent;
}

.google-ad .ul-list, .google-ad .ol-list {
    margin: 20px 0 20px 40px;
    background: transparent;
}

.google-ad .ul-list li, .google-ad .ol-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .google-ad .hero-title {
        font-size: 2.5em;
    }

    .google-ad .hero-subtitle {
        font-size: 1.3em;
    }

    .google-ad .section-title {
        font-size: 1.8em;
    }

    .google-ad .subsection-title {
        font-size: 1.6em;
    }

    .google-ad .content-section {
        padding: 60px 20px;
    }

    .google-ad .ad-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-ad .power-content {
        flex-direction: column;
        gap: 30px;
    }

    .google-ad .offerings-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-ad .goals-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-ad .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-ad .case-content {
        flex-direction: column;
        gap: 30px;
    }

    .google-ad .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .google-ad .ul-list, .google-ad .ol-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .google-ad .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .google-ad .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .google-ad .section-title {
        font-size: 1.6em;
    }

    .google-ad .content-text {
        font-size: 1em;
    }

    .google-ad .ad-type-item, .google-ad .goal-item, .google-ad .feature-item, .google-ad .offering-item {
        padding: 20px;
    }

    .google-ad .offering-amount {
        font-size: 2em;
    }

    .google-ad .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .google-ad .case-stat {
        font-size: 2em;
    }
}




/* ===== 亞馬遜廣告頁面樣式 ===== */
/* 注：以下樣式專為 amazon-ad.html 頁面設計 */

.amazon-ad .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.amazon-ad .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.amazon-ad .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.amazon-ad .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.amazon-ad .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.amazon-ad .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.amazon-ad .ecommerce-section {
    margin-bottom: 80px;
    background: transparent;
}

.amazon-ad .ecommerce-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    background: transparent;
}

.amazon-ad .ecommerce-content {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

.amazon-ad .ecommerce-content p {
    margin-bottom: 20px;
}

.amazon-ad .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 40px 0;
    color: #333;
    text-align: center;
    background: transparent;
}

.amazon-ad .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.amazon-ad .service-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amazon-ad .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.amazon-ad .service-icon {
    font-size: 3em;
    margin-bottom: 30px;
    color: #ff9900;
    background: transparent;
}

.amazon-ad .service-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    background: transparent;
}

.amazon-ad .service-content {
    line-height: 1.8;
    color: #555;
    background: transparent;
}

.amazon-ad .service-content p {
    margin-bottom: 15px;
}

.amazon-ad .highlight-text {
    color: #ff9900;
    font-weight: 600;
    background: transparent;
}

.amazon-ad .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.amazon-ad .content-text p {
    margin-bottom: 15px;
}

.amazon-ad .advantages-section {
    margin: 80px 0;
    background: transparent;
}

.amazon-ad .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amazon-ad .advantage-item {
    text-align: center;
    background: transparent;
    padding: 30px;
}

.amazon-ad .advantage-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff9900;
    background: transparent;
}

.amazon-ad .advantage-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.amazon-ad .advantage-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.amazon-ad .platform-section {
    margin: 60px 0;
    background: transparent;
}

.amazon-ad .platform-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.amazon-ad .platform-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.amazon-ad .platform-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ff9900;
    background: transparent;
}

.amazon-ad .platform-text {
    flex: 1;
    background: transparent;
}

.amazon-ad .platform-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background: transparent;
}

.amazon-ad .platform-features {
    margin-top: 20px;
    background: transparent;
}

.amazon-ad .platform-features ul {
    margin-left: 20px;
    background: transparent;
}

.amazon-ad .platform-features li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.amazon-ad .team-section {
    margin: 80px 0;
    background: transparent;
}

.amazon-ad .team-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.amazon-ad .team-icon {
    font-size: 3em;
    margin-bottom: 30px;
    color: #ff9900;
    background: transparent;
}

.amazon-ad .team-stats {
    font-size: 2em;
    font-weight: bold;
    color: #ff9900;
    margin: 20px 0;
    background: transparent;
}

.amazon-ad .team-description {
    line-height: 1.8;
    color: #555;
    background: transparent;
}

.amazon-ad .cta-section {
    text-align: center;
    margin: 80px 0 40px 0;
    background: transparent;
}

.amazon-ad .cta-button {
    display: inline-block;
    background: #ff9900;
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.amazon-ad .cta-button:hover {
    background: #e68a00;
    transform: translateY(-3px);
}

.amazon-ad .ul-list, .amazon-ad .ol-list {
    margin: 20px 0 20px 40px;
    background: transparent;
}

.amazon-ad .ul-list li, .amazon-ad .ol-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .amazon-ad .hero-title {
        font-size: 2.5em;
    }

    .amazon-ad .hero-subtitle {
        font-size: 1.3em;
    }

    .amazon-ad .ecommerce-title {
        font-size: 1.8em;
    }

    .amazon-ad .section-title {
        font-size: 1.8em;
    }

    .amazon-ad .content-section {
        padding: 60px 20px;
    }

    .amazon-ad .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .amazon-ad .service-item {
        padding: 30px;
    }

    .amazon-ad .platform-content {
        flex-direction: column;
        gap: 30px;
    }

    .amazon-ad .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .amazon-ad .ul-list, .amazon-ad .ol-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .amazon-ad .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .amazon-ad .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .amazon-ad .ecommerce-title {
        font-size: 1.6em;
    }

    .amazon-ad .section-title {
        font-size: 1.6em;
    }

    .amazon-ad .ecommerce-content {
        font-size: 1em;
    }

    .amazon-ad .content-text {
        font-size: 1em;
    }

    .amazon-ad .service-icon, .amazon-ad .platform-icon, .amazon-ad .team-icon {
        font-size: 2.5em;
    }

    .amazon-ad .cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
}




/* ===== Facebook广告页面样式 ===== */
/* 注：以下样式专为 facebook-ad.html 页面设计 */

.facebook-ad .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.facebook-ad .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.facebook-ad .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.facebook-ad .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.facebook-ad .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.facebook-ad .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.facebook-ad .intro-section {
    margin-bottom: 80px;
    background: transparent;
}

.facebook-ad .intro-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    background: transparent;
}

.facebook-ad .intro-content {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

.facebook-ad .intro-content p {
    margin-bottom: 20px;
}

.facebook-ad .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.facebook-ad .cta-button {
    display: inline-block;
    background: #1877F2;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.facebook-ad .cta-button:hover {
    background: #166FE5;
    transform: translateY(-2px);
}

.facebook-ad .cta-button.secondary {
    background: #42B72A;
}

.facebook-ad .cta-button.secondary:hover {
    background: #36A420;
}

.facebook-ad .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 40px 0;
    color: #333;
    text-align: center;
    background: transparent;
}

.facebook-ad .subsection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 40px 0 20px 0;
    color: #333;
    background: transparent;
}

.facebook-ad .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.facebook-ad .content-text p {
    margin-bottom: 15px;
}

.facebook-ad .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.facebook-ad .goal-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facebook-ad .goal-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.facebook-ad .goal-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1877F2;
    background: transparent;
}

.facebook-ad .goal-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.facebook-ad .goal-description {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    background: transparent;
}

.facebook-ad .learn-more {
    color: #1877F2;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.facebook-ad .highlight-section {
    margin: 80px 0;
    background: transparent;
}

.facebook-ad .highlight-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.facebook-ad .highlight-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.facebook-ad .highlight-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1877F2;
    background: transparent;
}

.facebook-ad .highlight-text {
    flex: 1;
    background: transparent;
}

.facebook-ad .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.facebook-ad .feature-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.facebook-ad .feature-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.facebook-ad .feature-content {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.facebook-ad .tools-section {
    margin: 80px 0;
    background: transparent;
}

.facebook-ad .tool-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.facebook-ad .tool-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.facebook-ad .tool-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1877F2;
    background: transparent;
}

.facebook-ad .tool-text {
    flex: 1;
    background: transparent;
}

.facebook-ad .stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #1877F2;
    margin: 10px 0;
    background: transparent;
}

.facebook-ad .opportunity-section {
    margin: 60px 0;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 40px;
}

.facebook-ad .opportunity-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: transparent;
}

.facebook-ad .opportunity-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.facebook-ad .opportunity-text {
    flex: 1;
    background: transparent;
}

.facebook-ad .final-cta {
    text-align: center;
    margin: 80px 0 40px 0;
    background: transparent;
}

.facebook-ad .final-button {
    display: inline-block;
    background: #1877F2;
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.facebook-ad .final-button:hover {
    background: #166FE5;
    transform: translateY(-3px);
}

.facebook-ad .note-text {
    margin-top: 20px;
    color: #666;
    font-size: 0.9em;
    background: transparent;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .facebook-ad .hero-title {
        font-size: 2.5em;
    }

    .facebook-ad .hero-subtitle {
        font-size: 1.3em;
    }

    .facebook-ad .intro-title {
        font-size: 1.8em;
    }

    .facebook-ad .section-title {
        font-size: 1.8em;
    }

    .facebook-ad .subsection-title {
        font-size: 1.5em;
    }

    .facebook-ad .content-section {
        padding: 60px 20px;
    }

    .facebook-ad .goals-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .facebook-ad .goal-item {
        padding: 30px;
    }

    .facebook-ad .highlight-content,
    .facebook-ad .tool-content,
    .facebook-ad .opportunity-content {
        flex-direction: column;
        gap: 30px;
    }

    .facebook-ad .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .facebook-ad .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .facebook-ad .opportunity-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .facebook-ad .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .facebook-ad .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .facebook-ad .intro-title {
        font-size: 1.6em;
    }

    .facebook-ad .section-title {
        font-size: 1.6em;
    }

    .facebook-ad .intro-content {
        font-size: 1em;
    }

    .facebook-ad .content-text {
        font-size: 1em;
    }

    .facebook-ad .goal-icon,
    .facebook-ad .highlight-icon,
    .facebook-ad .tool-icon {
        font-size: 2.5em;
    }

    .facebook-ad .cta-button,
    .facebook-ad .final-button {
        padding: 15px 30px;
        font-size: 1em;
    }

    .facebook-ad .stat-number {
        font-size: 2em;
    }
}



/* ===== 亞馬遜廣告頁面樣式 ===== */
/* 注：以下樣式專為 amazon-ad.html 頁面設計 */

.amazon-ad .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.amazon-ad .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.amazon-ad .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.amazon-ad .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.amazon-ad .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.amazon-ad .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.amazon-ad .ecommerce-section {
    margin-bottom: 80px;
    background: transparent;
}

.amazon-ad .ecommerce-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    background: transparent;
}

.amazon-ad .ecommerce-content {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

.amazon-ad .ecommerce-content p {
    margin-bottom: 20px;
}

.amazon-ad .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 40px 0;
    color: #333;
    text-align: center;
    background: transparent;
}

.amazon-ad .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.amazon-ad .service-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amazon-ad .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.amazon-ad .service-icon {
    font-size: 3em;
    margin-bottom: 30px;
    color: #ff9900;
    background: transparent;
}

.amazon-ad .service-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    background: transparent;
}

.amazon-ad .service-content {
    line-height: 1.8;
    color: #555;
    background: transparent;
}

.amazon-ad .service-content p {
    margin-bottom: 15px;
}

.amazon-ad .highlight-text {
    color: #ff9900;
    font-weight: 600;
    background: transparent;
}

.amazon-ad .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.amazon-ad .content-text p {
    margin-bottom: 15px;
}

.amazon-ad .advantages-section {
    margin: 80px 0;
    background: transparent;
}

.amazon-ad .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amazon-ad .advantage-item {
    text-align: center;
    background: transparent;
    padding: 30px;
}

.amazon-ad .advantage-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff9900;
    background: transparent;
}

.amazon-ad .advantage-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.amazon-ad .advantage-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.amazon-ad .platform-section {
    margin: 60px 0;
    background: transparent;
}

.amazon-ad .platform-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.amazon-ad .platform-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.amazon-ad .platform-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ff9900;
    background: transparent;
}

.amazon-ad .platform-text {
    flex: 1;
    background: transparent;
}

.amazon-ad .platform-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background: transparent;
}

.amazon-ad .platform-features {
    margin-top: 20px;
    background: transparent;
}

.amazon-ad .platform-features ul {
    margin-left: 20px;
    background: transparent;
}

.amazon-ad .platform-features li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.amazon-ad .team-section {
    margin: 80px 0;
    background: transparent;
}

.amazon-ad .team-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.amazon-ad .team-icon {
    font-size: 3em;
    margin-bottom: 30px;
    color: #ff9900;
    background: transparent;
}

.amazon-ad .team-stats {
    font-size: 2em;
    font-weight: bold;
    color: #ff9900;
    margin: 20px 0;
    background: transparent;
}

.amazon-ad .team-description {
    line-height: 1.8;
    color: #555;
    background: transparent;
}

.amazon-ad .cta-section {
    text-align: center;
    margin: 80px 0 40px 0;
    background: transparent;
}

.amazon-ad .cta-button {
    display: inline-block;
    background: #ff9900;
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.amazon-ad .cta-button:hover {
    background: #e68a00;
    transform: translateY(-3px);
}

.amazon-ad .ul-list, .amazon-ad .ol-list {
    margin: 20px 0 20px 40px;
    background: transparent;
}

.amazon-ad .ul-list li, .amazon-ad .ol-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    background: transparent;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .amazon-ad .hero-title {
        font-size: 2.5em;
    }

    .amazon-ad .hero-subtitle {
        font-size: 1.3em;
    }

    .amazon-ad .ecommerce-title {
        font-size: 1.8em;
    }

    .amazon-ad .section-title {
        font-size: 1.8em;
    }

    .amazon-ad .content-section {
        padding: 60px 20px;
    }

    .amazon-ad .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .amazon-ad .service-item {
        padding: 30px;
    }

    .amazon-ad .platform-content {
        flex-direction: column;
        gap: 30px;
    }

    .amazon-ad .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .amazon-ad .ul-list, .amazon-ad .ol-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .amazon-ad .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .amazon-ad .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .amazon-ad .ecommerce-title {
        font-size: 1.6em;
    }

    .amazon-ad .section-title {
        font-size: 1.6em;
    }

    .amazon-ad .ecommerce-content {
        font-size: 1em;
    }

    .amazon-ad .content-text {
        font-size: 1em;
    }

    .amazon-ad .service-icon, .amazon-ad .platform-icon, .amazon-ad .team-icon {
        font-size: 2.5em;
    }

    .amazon-ad .cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
}





/* ===== 网红种草页面样式 ===== */
/* 注：以下样式专为 ip-favor.html 页面设计 */

.ip-favor .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.ip-favor .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.ip-favor .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.ip-favor .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ip-favor .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.ip-favor .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.ip-favor .intro-section {
    margin-bottom: 80px;
    background: transparent;
}

.ip-favor .intro-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    background: transparent;
}

.ip-favor .intro-content {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

.ip-favor .intro-content p {
    margin-bottom: 20px;
}

.ip-favor .treasures-section {
    margin: 80px 0;
    background: transparent;
}

.ip-favor .treasures-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    background: transparent;
}

.ip-favor .treasures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.ip-favor .treasure-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ip-favor .treasure-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ip-favor .treasure-icon {
    font-size: 3em;
    margin-bottom: 20px;
    background: transparent;
}

.ip-favor .treasure-item:nth-child(1) .treasure-icon {
    color: #FF6B6B;
}

.ip-favor .treasure-item:nth-child(2) .treasure-icon {
    color: #4ECDC4;
}

.ip-favor .treasure-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    background: transparent;
}

.ip-favor .treasure-subtitle {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #666;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ip-favor .treasure-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    background: transparent;
}

.ip-favor .treasure-content p {
    margin-bottom: 15px;
}

.ip-favor .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 40px 0;
    color: #333;
    text-align: center;
    background: transparent;
}

.ip-favor .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.ip-favor .benefit-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ip-favor .benefit-item:hover {
    transform: translateY(-5px);
}

.ip-favor .benefit-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FF6B6B;
    background: transparent;
}

.ip-favor .benefit-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.ip-favor .benefit-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.ip-favor .case-studies {
    margin: 80px 0;
    background: transparent;
}

.ip-favor .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ip-favor .case-item {
    background: transparent;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.ip-favor .case-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.ip-favor .case-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.ip-favor .xiaohongshu-section {
    margin: 80px 0;
    background: transparent;
}

.ip-favor .platform-info {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.ip-favor .platform-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.ip-favor .platform-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FF2442;
    background: transparent;
}

.ip-favor .platform-stats {
    font-size: 2em;
    font-weight: bold;
    color: #FF2442;
    margin: 10px 0;
    background: transparent;
}

.ip-favor .platform-text {
    flex: 1;
    background: transparent;
}

.ip-favor .subsection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 40px 0 20px 0;
    color: #333;
    background: transparent;
}

.ip-favor .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.ip-favor .content-text p {
    margin-bottom: 15px;
}

.ip-favor .steps-section {
    margin: 80px 0;
    background: transparent;
}

.ip-favor .steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    background: transparent;
}

.ip-favor .step-item {
    display: flex;
    align-items: flex-start;
    background: transparent;
}

.ip-favor .step-number {
    background: #FF6B6B;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 20px;
    flex-shrink: 0;
}

.ip-favor .step-content {
    flex: 1;
    background: transparent;
}

.ip-favor .step-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    background: transparent;
}

.ip-favor .step-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.ip-favor .contact-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    margin: 80px 0;
}

.ip-favor .form-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    background: transparent;
    text-align: center;
}

.ip-favor .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

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

.ip-favor .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.ip-favor .form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.ip-favor .form-select:focus {
    outline: none;
    border-color: #FF6B6B;
}

.ip-favor .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.ip-favor .service-item {
    text-align: center;
    background: transparent;
    padding: 30px;
}

.ip-favor .service-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4ECDC4;
    background: transparent;
}

.ip-favor .service-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.ip-favor .service-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.ip-favor .cta-section {
    text-align: center;
    margin: 80px 0 40px 0;
    background: transparent;
}

.ip-favor .cta-button {
    display: inline-block;
    background: #FF6B6B;
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ip-favor .cta-button:hover {
    background: #FF5252;
    transform: translateY(-3px);
}

.ip-favor .highlight-text {
    color: #FF6B6B;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .ip-favor .hero-title {
        font-size: 2.5em;
    }

    .ip-favor .hero-subtitle {
        font-size: 1.3em;
    }

    .ip-favor .intro-title {
        font-size: 2em;
    }

    .ip-favor .treasures-title {
        font-size: 1.8em;
    }

    .ip-favor .section-title {
        font-size: 1.8em;
    }

    .ip-favor .content-section {
        padding: 60px 20px;
    }

    .ip-favor .treasures-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ip-favor .treasure-item {
        padding: 30px;
    }

    .ip-favor .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ip-favor .benefit-item {
        padding: 30px;
    }

    .ip-favor .cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ip-favor .platform-info {
        flex-direction: column;
        gap: 30px;
    }

    .ip-favor .step-item {
        flex-direction: column;
    }

    .ip-favor .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .ip-favor .contact-form {
        padding: 30px 20px;
    }

    .ip-favor .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .ip-favor .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .ip-favor .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .ip-favor .intro-title {
        font-size: 1.8em;
    }

    .ip-favor .section-title {
        font-size: 1.6em;
    }

    .ip-favor .intro-content {
        font-size: 1em;
    }

    .ip-favor .content-text {
        font-size: 1em;
    }

    .ip-favor .treasure-icon,
    .ip-favor .benefit-icon,
    .ip-favor .platform-icon,
    .ip-favor .service-icon {
        font-size: 2.5em;
    }

    .ip-favor .cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }

    .ip-favor .platform-stats {
        font-size: 1.8em;
    }
}



/* ===== AI聊天机器人页面样式 ===== */
/* 注：以下样式专为 ai-bot.html 页面设计 */

.ai-bot .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.ai-bot .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.ai-bot .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.ai-bot .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ai-bot .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.ai-bot .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.ai-bot .intro-section {
    margin-bottom: 80px;
    background: transparent;
}

.ai-bot .intro-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    background: transparent;
}

.ai-bot .intro-content {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

.ai-bot .intro-content p {
    margin-bottom: 20px;
}

.ai-bot .expert-section {
    margin: 80px 0;
    background: transparent;
}

.ai-bot .expert-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.ai-bot .expert-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.ai-bot .expert-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #10A37F;
    background: transparent;
}

.ai-bot .expert-text {
    flex: 1;
    background: transparent;
}

.ai-bot .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 40px 0;
    color: #333;
    text-align: center;
    background: transparent;
}

.ai-bot .privacy-section {
    margin: 80px 0;
    background: transparent;
}

.ai-bot .privacy-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.ai-bot .privacy-text {
    flex: 1;
    background: transparent;
}

.ai-bot .privacy-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.ai-bot .privacy-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #10A37F;
    background: transparent;
}

.ai-bot .privacy-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.ai-bot .privacy-badge {
    background: #f0f9f5;
    color: #10A37F;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    border: 1px solid #d1f0e4;
}

.ai-bot .application-section {
    margin: 80px 0;
    background: transparent;
}

.ai-bot .app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.ai-bot .app-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-bot .app-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ai-bot .app-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #10A37F;
    background: transparent;
}

.ai-bot .app-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.ai-bot .app-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.ai-bot .app-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #10A37F;
    margin: 15px 0;
    background: transparent;
}

.ai-bot .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.ai-bot .benefit-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ai-bot .benefit-item:hover {
    transform: translateY(-5px);
}

.ai-bot .benefit-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #10A37F;
    background: transparent;
}

.ai-bot .benefit-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.ai-bot .benefit-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.ai-bot .solution-section {
    margin: 80px 0;
    background: transparent;
}

.ai-bot .solution-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ai-bot .solution-item {
    text-align: center;
    background: transparent;
    padding: 30px;
}

.ai-bot .solution-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #10A37F;
    background: transparent;
}

.ai-bot .solution-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.ai-bot .solution-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.ai-bot .case-studies {
    margin: 80px 0;
    background: transparent;
}

.ai-bot .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ai-bot .case-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.ai-bot .case-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.ai-bot .case-description {
    line-height: 1.8;
    color: #555;
    background: transparent;
}

.ai-bot .case-tag {
    display: inline-block;
    background: #f0f9f5;
    color: #10A37F;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-top: 15px;
    font-weight: bold;
}

.ai-bot .faq-section {
    margin: 80px 0;
    background: transparent;
}

.ai-bot .faq-list {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
}

.ai-bot .faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    background: transparent;
}

.ai-bot .faq-question {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    background: transparent;
}

.ai-bot .faq-answer {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.ai-bot .final-cta {
    text-align: center;
    margin: 80px 0 40px 0;
    background: transparent;
}

.ai-bot .cta-button {
    display: inline-block;
    background: #10A37F;
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ai-bot .cta-button:hover {
    background: #0D8A6D;
    transform: translateY(-3px);
}

.ai-bot .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.ai-bot .content-text p {
    margin-bottom: 15px;
}

.ai-bot .highlight-text {
    color: #10A37F;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .ai-bot .hero-title {
        font-size: 2.5em;
    }

    .ai-bot .hero-subtitle {
        font-size: 1.3em;
    }

    .ai-bot .intro-title {
        font-size: 2em;
    }

    .ai-bot .section-title {
        font-size: 1.8em;
    }

    .ai-bot .content-section {
        padding: 60px 20px;
    }

    .ai-bot .expert-content,
    .ai-bot .privacy-content {
        flex-direction: column;
        gap: 30px;
    }

    .ai-bot .app-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ai-bot .app-item {
        padding: 30px;
    }

    .ai-bot .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ai-bot .benefit-item {
        padding: 30px;
    }

    .ai-bot .solution-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ai-bot .cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ai-bot .case-item {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .ai-bot .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .ai-bot .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .ai-bot .intro-title {
        font-size: 1.8em;
    }

    .ai-bot .section-title {
        font-size: 1.6em;
    }

    .ai-bot .intro-content {
        font-size: 1em;
    }

    .ai-bot .content-text {
        font-size: 1em;
    }

    .ai-bot .expert-icon,
    .ai-bot .privacy-icon,
    .ai-bot .app-icon,
    .ai-bot .benefit-icon,
    .ai-bot .solution-icon {
        font-size: 2.5em;
    }

    .ai-bot .cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }

    .ai-bot .app-number {
        font-size: 2em;
    }

    .ai-bot .privacy-badges {
        justify-content: center;
    }
}




/* ===== 全球营销页面样式 ===== */
/* 注：以下样式专为 global-ad.html 页面设计 */

.global-ad .hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.global-ad .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.global-ad .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.global-ad .hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.global-ad .hero-subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
}

.global-ad .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
}

.global-ad .intro-section {
    margin-bottom: 80px;
    background: transparent;
}

.global-ad .intro-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    background: transparent;
}

.global-ad .intro-content {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

.global-ad .intro-content p {
    margin-bottom: 20px;
}

.global-ad .ai-expertise {
    margin: 80px 0;
    background: transparent;
}

.global-ad .ai-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.global-ad .ai-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.global-ad .ai-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #4A6FA5;
    background: transparent;
}

.global-ad .ai-text {
    flex: 1;
    background: transparent;
}

.global-ad .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.global-ad .benefit-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-ad .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.global-ad .benefit-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4A6FA5;
    background: transparent;
}

.global-ad .benefit-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.global-ad .benefit-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.global-ad .section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 40px 0;
    color: #333;
    text-align: center;
    background: transparent;
}

.global-ad .solutions-section {
    margin: 80px 0;
    background: transparent;
}

.global-ad .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.global-ad .solution-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.global-ad .solution-item:hover {
    transform: translateY(-5px);
}

.global-ad .solution-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4A6FA5;
    background: transparent;
}

.global-ad .solution-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.global-ad .solution-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.global-ad .custom-section {
    margin: 80px 0;
    background: transparent;
}

.global-ad .custom-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.global-ad .custom-text {
    flex: 1;
    background: transparent;
}

.global-ad .custom-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.global-ad .custom-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #4A6FA5;
    background: transparent;
}

.global-ad .network-section {
    margin: 80px 0;
    background: transparent;
}

.global-ad .network-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.global-ad .network-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.global-ad .network-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4A6FA5;
    background: transparent;
}

.global-ad .network-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    background: transparent;
}

.global-ad .network-description {
    line-height: 1.6;
    color: #555;
    background: transparent;
}

.global-ad .awards-section {
    margin: 80px 0;
    background: transparent;
}

.global-ad .awards-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
    background: transparent;
}

.global-ad .awards-visual {
    flex: 1;
    text-align: center;
    background: transparent;
}

.global-ad .awards-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700;
    background: transparent;
}

.global-ad .awards-text {
    flex: 1;
    background: transparent;
}

.global-ad .awards-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.global-ad .award-badge {
    background: #f8f9fa;
    color: #4A6FA5;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    border: 1px solid #dee2e6;
}

.global-ad .testimonials-section {
    margin: 80px 0;
    background: transparent;
}

.global-ad .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.global-ad .testimonial-item {
    background: transparent;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.global-ad .testimonial-rating {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.global-ad .testimonial-quote {
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #4A6FA5;
    background: transparent;
}

.global-ad .testimonial-author {
    font-weight: bold;
    color: #333;
    background: transparent;
}

.global-ad .testimonial-position {
    color: #666;
    font-size: 0.9em;
    background: transparent;
}

.global-ad .final-section {
    margin: 80px 0;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.global-ad .cta-button {
    display: inline-block;
    background: #4A6FA5;
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.global-ad .cta-button:hover {
    background: #3A5F95;
    transform: translateY(-3px);
}

.global-ad .content-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    background: transparent;
    margin-bottom: 25px;
}

.global-ad .content-text p {
    margin-bottom: 15px;
}

.global-ad .highlight-text {
    color: #4A6FA5;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .global-ad .hero-title {
        font-size: 2.5em;
    }

    .global-ad .hero-subtitle {
        font-size: 1.3em;
    }

    .global-ad .intro-title {
        font-size: 2em;
    }

    .global-ad .section-title {
        font-size: 1.8em;
    }

    .global-ad .content-section {
        padding: 60px 20px;
    }

    .global-ad .ai-content,
    .global-ad .custom-content,
    .global-ad .awards-content {
        flex-direction: column;
        gap: 30px;
    }

    .global-ad .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .global-ad .benefit-item {
        padding: 30px;
    }

    .global-ad .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .global-ad .solution-item {
        padding: 30px;
    }

    .global-ad .network-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .global-ad .network-item {
        padding: 30px;
    }

    .global-ad .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .global-ad .testimonial-item {
        padding: 30px;
    }

    .global-ad .final-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .global-ad .hero-title {
        font-size: 2em;
        padding: 0 20px;
    }

    .global-ad .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .global-ad .intro-title {
        font-size: 1.8em;
    }

    .global-ad .section-title {
        font-size: 1.6em;
    }

    .global-ad .intro-content {
        font-size: 1em;
    }

    .global-ad .content-text {
        font-size: 1em;
    }

    .global-ad .ai-icon,
    .global-ad .benefit-icon,
    .global-ad .solution-icon,
    .global-ad .custom-icon,
    .global-ad .network-icon,
    .global-ad .awards-icon {
        font-size: 2.5em;
    }

    .global-ad .cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }

    .global-ad .awards-badges {
        justify-content: center;
    }
}