/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #8fa4b3 0%, #d4dde4 50%, #ffffff 100%);
    padding: 120px 0 200px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-us-badge {
    display: inline-block;
    background: #00d4aa;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.about-hero-description {
    font-size: 18px;
    color: #6c757d;
    margin: 0 0 40px 0;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.start-trading-btn {
    display: inline-block;
    background: transparent;
    color: #2c3e50;
    padding: 15px 35px;
    border: 2px solid #2c3e50;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.start-trading-btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.start-trading-btn.green {
    background: #00d4aa;
    color: white;
    border: 2px solid #00d4aa;
}

.start-trading-btn.green:hover {
    background: #00b894;
    border-color: #00b894;
    transform: translateY(-2px);
}

/* Swiss Made Section */
.swiss-made-section {
    background: white;
    padding: 100px 0;
}

.swiss-made-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.swiss-made-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.swiss-made-image {
    text-align: center;
}

.mountain-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.swiss-made-text {
    padding-left: 20px;
}

.swiss-made-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.swiss-made-description {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 35px 0;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0 150px 0;
    }

    .about-hero-container {
        padding: 0 20px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .swiss-made-section {
        padding: 80px 0;
    }

    .swiss-made-container {
        padding: 0 20px;
    }

    .swiss-made-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .swiss-made-text {
        padding-left: 0;
    }

    .swiss-made-title {
        font-size: 28px;
    }

    .swiss-made-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 0 120px 0;
    }

    .about-hero-container {
        padding: 0 16px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-description {
        font-size: 15px;
    }

    .start-trading-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .swiss-made-section {
        padding: 60px 0;
    }

    .swiss-made-container {
        padding: 0 16px;
    }

    .swiss-made-content {
        gap: 40px;
    }

    .swiss-made-title {
        font-size: 24px;
    }
}
/* Our Vision Section */
.our-vision-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.our-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.our-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-text {
    padding-right: 20px;
}

.vision-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.vision-description {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.vision-image-quote {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ceo-image {
    flex-shrink: 0;
}

.ceo-img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.ceo-quote {
    flex: 1;
}

.quote-text {
    font-size: 16px;
    color: #2c3e50;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

.quote-author {
    margin: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-family: 'Arial', sans-serif;
}

.author-title {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .our-vision-section {
        padding: 80px 0;
    }

    .our-vision-container {
        padding: 0 20px;
    }

    .our-vision-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vision-text {
        padding-right: 0;
        text-align: center;
    }

    .vision-title {
        font-size: 28px;
    }

    .vision-description {
        font-size: 15px;
    }

    .vision-image-quote {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .ceo-img {
        width: 150px;
        height: 180px;
    }

    .quote-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .our-vision-section {
        padding: 60px 0;
    }

    .our-vision-container {
        padding: 0 16px;
    }

    .our-vision-content {
        gap: 40px;
    }

    .vision-title {
        font-size: 24px;
    }

    .vision-description {
        font-size: 14px;
    }

    .vision-image-quote {
        gap: 20px;
    }

    .ceo-img {
        width: 120px;
        height: 150px;
    }

    .quote-text {
        font-size: 14px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-title {
        font-size: 13px;
    }
}
/* Our Mission Section */
.our-mission-section {
    background: white;
    padding: 100px 0;
}

.our-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.mission-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 60px 0;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    text-align: center;
    padding: 0 15px;
}

.mission-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mission-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-family: 'Arial', sans-serif;
}

.mission-card-description {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }
}

@media (max-width: 768px) {
    .our-mission-section {
        padding: 80px 0;
    }

    .our-mission-container {
        padding: 0 20px;
    }

    .mission-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .mission-cards {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .mission-card {
        padding: 0 20px;
    }

    .mission-card-title {
        font-size: 17px;
    }

    .mission-card-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .our-mission-section {
        padding: 60px 0;
    }

    .our-mission-container {
        padding: 0 16px;
    }

    .mission-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .mission-cards {
        margin-top: 40px;
        gap: 35px;
    }

    .mission-card {
        padding: 0 10px;
    }

    .mission-icon {
        height: 70px;
        margin-bottom: 20px;
    }

    .icon-img {
        width: 50px;
        height: 50px;
    }

    .mission-card-title {
        font-size: 16px;
    }

    .mission-card-description {
        font-size: 14px;
    }
}
/* Safety of Funds Section */
.safety-funds-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.safety-funds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.safety-funds-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safety-funds-image {
    text-align: center;
}

.safety-img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.safety-funds-text {
    padding-left: 20px;
}

.safety-funds-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.safety-funds-description {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 35px 0;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .safety-funds-section {
        padding: 80px 0;
    }

    .safety-funds-container {
        padding: 0 20px;
    }

    .safety-funds-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .safety-funds-text {
        padding-left: 0;
    }

    .safety-funds-title {
        font-size: 28px;
    }

    .safety-funds-description {
        font-size: 15px;
    }

    .safety-img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .safety-funds-section {
        padding: 60px 0;
    }

    .safety-funds-container {
        padding: 0 16px;
    }

    .safety-funds-content {
        gap: 40px;
    }

    .safety-funds-title {
        font-size: 24px;
    }

    .safety-funds-description {
        font-size: 14px;
    }

    .safety-img {
        max-height: 200px;
    }
}
/* Negative Balance Protection Section */
.negative-balance-section {
    background: white;
    padding: 100px 0;
}

.negative-balance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.negative-balance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.negative-balance-text {
    padding-right: 20px;
}

.negative-balance-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.negative-balance-description {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.negative-balance-image {
    text-align: center;
}

.protection-img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .negative-balance-section {
        padding: 80px 0;
    }

    .negative-balance-container {
        padding: 0 20px;
    }

    .negative-balance-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .negative-balance-text {
        padding-right: 0;
        order: 2;
    }

    .negative-balance-image {
        order: 1;
    }

    .negative-balance-title {
        font-size: 28px;
    }

    .negative-balance-description {
        font-size: 15px;
    }

    .protection-img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .negative-balance-section {
        padding: 60px 0;
    }

    .negative-balance-container {
        padding: 0 16px;
    }

    .negative-balance-content {
        gap: 40px;
    }

    .negative-balance-title {
        font-size: 24px;
    }

    .negative-balance-description {
        font-size: 14px;
    }

    .protection-img {
        max-height: 200px;
    }
}