
    /* 關於我們頁面專用樣式 */
    .about-us-content {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro TC", "SF Pro Display", "Helvetica Neue", "PingFang TC", "Microsoft JhengHei", sans-serif;
        color: #1e293b;
        line-height: 1.7;
    }

    .about-hero {
        text-align: center;
        padding: 80px 24px;
        background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    }

    .about-hero h1 {
        font-size: clamp(40px, 5vw, 56px);
        font-weight: 700;
        background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .about-hero-subtitle {
        font-size: 20px;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 32px;
        font-weight: 500;
    }

    .about-tags {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 24px;
    }

    .about-tag {
        background: white;
        border: 2px solid #3b82f6;
        color: #3b82f6;
        padding: 10px 24px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 15px;
    }

    .about-mission {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 24px;
    }

    .mission-card {
        background: white;
        padding: 32px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .mission-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    }

    .mission-icon {
        font-size: 56px;
        margin-bottom: 16px;
    }

    .mission-card h3 {
        font-size: 22px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .mission-card p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    .about-section {
        padding: 60px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-section-title {
        text-align: center;
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: #1e293b;
    }

    .about-section-subtitle {
        text-align: center;
        font-size: 17px;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 48px;
    }

    .about-story {
        max-width: 900px;
        margin: 0 auto;
        font-size: 17px;
        line-height: 1.9;
        color: #1e293b;
    }

    .about-story p {
        margin-bottom: 20px;
    }

    .about-story strong {
        color: #3b82f6;
        font-weight: 600;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 32px;
        max-width: 1000px;
        margin: 60px auto;
        padding: 0 24px;
    }

    .stat-card {
        text-align: center;
        padding: 32px;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        border-radius: 18px;
        color: white;
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    }

    .stat-number {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1;
    }

    .stat-label {
        font-size: 16px;
        opacity: 0.95;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .service-card {
        background: white;
        padding: 32px;
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 22px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    .rescue-story {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 60px 32px;
        border-radius: 24px;
        text-align: center;
        max-width: 1000px;
        margin: 60px auto;
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    }

    .rescue-story h2 {
        font-size: clamp(32px, 4vw, 40px);
        font-weight: 700;
        margin-bottom: 24px;
        color: white;
    }

    .rescue-story p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 16px;
        opacity: 0.95;
    }

    .rescue-achievements {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .rescue-achievement {
        background: rgba(255, 255, 255, 0.15);
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    .rescue-achievement strong {
        font-size: 16px;
        display: block;
        margin-bottom: 4px;
    }

    .about-image-container {
        width: 100%;
        max-width: 900px;
        margin: 40px auto;
        padding: 0 24px;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .about-image-container img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .about-image-container:hover img {
        transform: scale(1.02);
    }

    .about-image-caption {
        text-align: center;
        color: #64748b;
        font-size: 15px;
        margin-top: 12px;
        font-style: italic;
    }

    .team-section {
        background: #f0f9ff;
        padding: 60px 24px;
        text-align: center;
    }

    .team-intro {
        max-width: 800px;
        margin: 0 auto 40px;
        font-size: 17px;
        line-height: 1.8;
        color: #1e293b;
    }

    .team-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .team-feature {
        background: white;
        padding: 28px;
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .team-feature-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .team-feature h4 {
        font-size: 19px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .team-feature p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    .faq-section {
        background: white;
        padding: 60px 24px;
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: #f0f9ff;
        padding: 24px;
        border-radius: 18px;
        margin-bottom: 16px;
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    .faq-question {
        color: #3b82f6;
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .faq-answer {
        color: #1e293b;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    .cta-section {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 60px 32px;
        text-align: center;
        border-radius: 24px;
        max-width: 1000px;
        margin: 60px auto;
    }

    .cta-section h2 {
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: white;
    }

    .cta-section p {
        font-size: 18px;
        margin-bottom: 32px;
        opacity: 0.95;
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: white;
        color: #3b82f6;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 17px;
        transition: all 0.3s ease;
    }

    .cta-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    }

    .cta-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: transparent;
        color: white;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 17px;
        border: 2px solid white;
        transition: all 0.3s ease;
    }

    .cta-btn-secondary:hover {
        background: white;
        color: #3b82f6;
        transform: translateY(-2px);
    }

    .highlight-number {
        color: #3b82f6;
        font-weight: 700;
        font-size: 1.1em;
    }

    @media (max-width: 768px) {
        .about-hero {
            padding: 60px 16px;
        }

        .about-section {
            padding: 40px 16px;
        }

        .about-mission {
            grid-template-columns: 1fr;
        }

        .stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .stat-number {
            font-size: 36px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .rescue-story {
            padding: 40px 24px;
        }

        .about-image-container {
            padding: 0 16px;
            margin: 30px auto;
        }

        .about-image-container img {
            max-height: 250px;
        }

        .cta-buttons {
            flex-direction: column;
            width: 100%;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .about-tags {
            flex-direction: column;
            align-items: center;
        }

        .about-tag {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }
    }
