.agent-page * {
    margin: 0;
    box-sizing: border-box;
}

.agent-page {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.agent-page p {
    color: #fff;
}

.agent-page strong {
    color: #fff;
}

.agent-page .header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.agent-page .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.agent-page .logo {
    font-size: 24px;
    font-weight: bold;
    color: #1e88e5;
}

.agent-page .nav {
    display: flex;
    gap: 30px;
}

.agent-page .nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

.agent-page .nav a:hover {
    color: #1e88e5;
}

.agent-page .nav a.active {
    color: #1e88e5;
    font-weight: bold;
}

.agent-page .hero {
    background: linear-gradient(135deg, #1e88e5 0%, #42A5F5  100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px
}

.agent-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.agent-page .hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.agent-page .hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #fff;
}

.agent-page .cta-btn {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 10px;
}

.agent-page .cta-btn:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.agent-page .cta-btn.secondary {
    background-color: transparent;
    border: 2px solid #fff;
}

.agent-page .cta-btn.secondary:hover {
    background-color: #fff;
    color: #1e88e5;
}

.agent-page .section {
    padding: 80px 0px;
    margin: 0 auto;
}

.agent-page .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.agent-page .section-title h2 {
    font-size: 36px;
    color: #1e88e5;
    margin-bottom: 15px;
}

.agent-page .section-title p {
    font-size: 16px;
    color: #666;
}

.agent-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.agent-page .benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.agent-page .benefit-card:hover {
    transform: translateY(-5px);
}

.agent-page .benefit-icon {
    width: 70px;
    height: 70px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.agent-page .benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.agent-page .benefit-card p {
    color: #666;
    line-height: 1.7;
}

.agent-page .process {
    background: #fff;
    padding: 80px 20px;
}

.agent-page .process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.agent-page .steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.agent-page .step {
    flex: 1;
    text-align: center;
    position: relative;
}

.agent-page .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.agent-page .step-number {
    width: 70px;
    height: 70px;
    background: #1e88e5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.agent-page .step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.agent-page .step p {
    color: #666;
    font-size: 14px;
}

.agent-page .income {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px
}

.agent-page .income-content {
    max-width: 900px;
    margin: 0 auto;
}

.agent-page .income-content div {
    color: #fff;
}

.agent-page .income h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.agent-page .income-highlight {
    font-size: 64px;
    font-weight: bold;
    margin: 30px 0;
    color: #fff;
}

.agent-page .income-note {
    font-size: 16px;
    opacity: 0.9;
    color: #fff;
}

.agent-page .advantage {
    padding: 80px 0px;
    margin: 0 auto;
}

.agent-page .advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.agent-page .advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.agent-page .advantage-number {
    width: 50px;
    height: 50px;
    background: #1e88e5;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.agent-page .advantage-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.agent-page .advantage-text p {
    color: #666;
    font-size: 14px;
}

.agent-page .faq {
    background: #f5f7fa;
    padding: 80px 20px;
}

.agent-page .faq-container {
    margin: 0 auto;
}

.agent-page .faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.agent-page .faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

.agent-page .faq-question::after {
    content: '+';
    font-size: 28px;
    color: #1e88e5;
    font-weight: bold;
}

.agent-page .faq-answer {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.8;
    display: none;
}

.agent-page .faq-item.active .faq-answer {
    display: block;
}

.agent-page .faq-item.active .faq-question::after {
    content: '−';
}

.agent-page .join {
    background: #1e88e5;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    border-radius: 8px
}

.agent-page .join-content {
    max-width: 800px;
    margin: 0 auto;
}

.agent-page .join h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #fff;
}

.agent-page .join p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #fff;
}

.agent-page .join-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.agent-page .footer {
    background: #263238;
    color: #90a4ae;
    padding: 40px 20px;
    text-align: center;
}

.agent-page .footer p {
    font-size: 14px;
}

@media (max-width: 768px) {
    .agent-page .hero h1 {
        font-size: 32px;
    }

    .agent-page .hero p {
        font-size: 16px;
    }

    .agent-page .steps {
        flex-direction: column;
    }

    .agent-page .step:not(:last-child)::after {
        display: none;
    }

    .agent-page .section-title h2 {
        font-size: 28px;
    }

    .agent-page .income-highlight {
        font-size: 48px;
    }
}