/* Asset Managers Hero Section */
.asset-managers-hero {
    background: linear-gradient(135deg, #a8b5d1 0%, #d4dae8 50%, #ffffff 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.asset-managers-container {
    max-width: 1000px;
    margin: 0 auto;
}

.asset-managers-badge {
    background: linear-gradient(90deg, #1dd1a1 0%, #3742fa 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
}

.asset-managers-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d4a6b;
    margin: 0 0 24px 0;
    line-height: 1.2;
    white-space: nowrap;
}

.asset-managers-description {
    font-size: 18px;
    color: #6b7a8a;
    margin: 0 0 40px 0;
    line-height: 1.6;
    font-weight: 400;
}

.asset-managers-btn {
    background: transparent;
    color: #2d4a6b;
    border: 2px solid #2d4a6b;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.asset-managers-btn:hover {
    background: #2d4a6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 74, 107, 0.3);
}

/* Mix Your Investing Experience Section */
.investing-experience-section {
    background: #ffffff;
    padding: 80px 0;
}

.investing-experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.investing-experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.investing-experience-image {
    text-align: center;
}

.investing-experience-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.investing-experience-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d4a6b;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.investing-experience-description {
    font-size: 16px;
    color: #6b7a8a;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-checkmark {
    color: #00e5c7;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    color: #6b7a8a;
    font-size: 15px;
    font-weight: 400;
}

.partner-btn {
    background: #00e5c7;
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    background: #00d4aa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 199, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .asset-managers-title {
        font-size: 42px;
        white-space: normal;
    }

    .investing-experience-content {
        gap: 60px;
    }

    .investing-experience-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .asset-managers-hero {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .asset-managers-title {
        font-size: 36px;
        margin-bottom: 20px;
        white-space: normal;
    }

    .asset-managers-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .asset-managers-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .investing-experience-section {
        padding: 60px 0;
    }

    .investing-experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .investing-experience-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .investing-experience-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .features-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .partner-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .asset-managers-hero {
        padding: 50px 16px;
    }

    .asset-managers-title {
        font-size: 28px;
        white-space: normal;
    }

    .asset-managers-description {
        font-size: 15px;
    }

    .asset-managers-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .investing-experience-section {
        padding: 50px 0;
    }

    .investing-experience-container {
        padding: 0 16px;
    }

    .investing-experience-title {
        font-size: 24px;
    }

    .investing-experience-description {
        font-size: 14px;
    }

    .feature-text {
        font-size: 14px;
    }

    .partner-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}
/* Diversify Portfolios Section */
.trading-instruments-section {
    background: #ffffff;
    padding: 80px 0;
}

.instruments-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d4a6b;
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.instruments-subtitle {
    font-size: 16px;
    color: #6b7a8a;
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.instruments-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.instrument-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.instrument-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instrument-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.instrument-content {
    flex: 1;
}

.instrument-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d4a6b;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.instrument-description {
    font-size: 15px;
    color: #6b7a8a;
    margin: 0;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .instruments-grid {
        gap: 50px 30px;
    }

    .instruments-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .trading-instruments-section {
        padding: 60px 0;
    }

    .instruments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        padding: 0 20px;
    }

    .instruments-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .instruments-subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .instrument-item {
        gap: 16px;
    }

    .instrument-icon {
        width: 50px;
        height: 50px;
    }

    .instrument-title {
        font-size: 18px;
    }

    .instrument-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trading-instruments-section {
        padding: 50px 0;
    }

    .instruments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }

    .instruments-title {
        font-size: 24px;
    }

    .instruments-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .instrument-item {
        gap: 14px;
    }

    .instrument-icon {
        width: 45px;
        height: 45px;
    }

    .instrument-title {
        font-size: 16px;
    }

    .instrument-description {
        font-size: 13px;
    }
}