    /* Mission & Vision Section */
    .mission-vision {
        position: relative;
        overflow: hidden;
    }

    .card--mission {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        transition: transform 0.3s ease;
    }

    .card--vision {
        background: linear-gradient(135deg, #f0f7ff 0%, #f8fbff 100%);
        border: 1px solid rgba(0, 110, 255, 0.1);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 110, 255, 0.05);
        transition: transform 0.3s ease;
    }

    [data-bs-theme="dark"] .card--mission {
        background: #1B2D29;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    [data-bs-theme="dark"] .card--vision {
        background: #1B2D29;
        border: 1px solid rgba(0, 110, 255, 0.15);
        box-shadow: 0 10px 30px rgba(0, 110, 255, 0.1);
    }

    .card--mission:hover, 
    .card--vision:hover {
        transform: translateY(-5px);
    }

    .mission-bullet {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    [data-bs-theme="dark"] .mission-bullet svg {
        color: #fff !important;
    }

    .vision-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    [data-bs-theme="dark"] .vision-icon {
        background-color: rgba(0, 110, 255, 0.2) !important;
    }

    [data-bs-theme="dark"] .vision-icon svg{
        color: #fff !important;
    }

    .mission-vision__shape {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: -1;
    }

    .mission-vision__shape-item--1 {
        position: absolute;
        top: 10%;
        left: 5%;
        animation: float 6s ease-in-out infinite;
    }

    .mission-vision__shape-item--2 {
        position: absolute;
        bottom: 10%;
        right: 5%;
        animation: float 8s ease-in-out infinite;
    }

    @keyframes float {
        0% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0); }
    }
    
    /* Forex FAQ Items */
    .forex-faq-item {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 15px;
    }
    
    [data-bs-theme="dark"] .forex-faq-item {
        background-color: #2a3042;
    }
    
    .forex-faq-item h5 {
        color: #0d6efd;
    }
    
    .withdrawal-info {
        background-color: #f0f7ff;
        border-left: 4px solid #0d6efd;
        padding: 15px;
        margin-top: 20px;
    }
    
    [data-bs-theme="dark"] .withdrawal-info {
        background-color: #1a2a3a;
    }
    /* Roadmap Section Styles */
.roadmap {
    position: relative;
    overflow: hidden;
}

.roadmap__wrapper {
    position: relative;
    padding: 60px 0;
}

.roadmap__line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, #a28525);
    z-index: 1;
}

.roadmap__item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    z-index: 2;
}

.roadmap__item--left {
    padding-right: 60px;
    left: 0;
}

.roadmap__item--right {
    padding-left: 60px;
    left: 50%;
}

.roadmap__item-content {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

[data-bs-theme="dark"] .roadmap__item-content {
    background: #1B2D29;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.roadmap__item--left .roadmap__item-content:before {
    content: '';
    position: absolute;
    right: -10px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #d4af37;
    transform: rotate(45deg);
    border-radius: 4px;
}

.roadmap__item--right .roadmap__item-content:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #d4af37;
    transform: rotate(45deg);
    border-radius: 4px;
}

.roadmap__item-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .roadmap__item-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roadmap__item-header h4 {
    color: #0d6efd;
}

.roadmap__item-date {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.roadmap__item-body ul {
    margin: 0;
    padding-left: 20px;
}

.roadmap__item-body li {
    margin-bottom: 8px;
    color: #495057;
}

[data-bs-theme="dark"] .roadmap__item-body li {
    color: #dee2e6;
}

.roadmap__item-status {
    position: absolute;
    top: 25px;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.roadmap__item--left .roadmap__item-status {
    right: -80px;
}

.roadmap__item--right .roadmap__item-status {
    left: -80px;
}

.roadmap__item-status--completed {
    background: #28a745;
    color: white;
}

.roadmap__item-status--progress {
    background: #ffc107;
    color: #212529;
}

.roadmap__item-status--upcoming {
    background: #6c757d;
    color: white;
}

.roadmap__shape-item {
    position: absolute;
    z-index: -1;
}

.roadmap__shape-item--1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.roadmap__shape-item--2 {
    bottom: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .roadmap__line {
        left: 30px;
    }
    
    .roadmap__item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        left: 0;
    }
    
    .roadmap__item--left .roadmap__item-content:before {
        left: -10px;
        right: auto;
    }
    
    .roadmap__item--left .roadmap__item-status,
    .roadmap__item--right .roadmap__item-status {
        left: -80px;
        right: auto;
    }
}
/* Footer Styles */
        .footer {
            background: #11201d;
            color: #e6e6e6;
            position: relative;
            overflow: hidden;
            padding: 70px 0 20px;
            border-top: 3px solid #d4af37;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer__wrapper {
            position: relative;
            z-index: 2;
        }
        
        .footer__top {
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            margin-bottom: 30px;
        }
        
        .footer__about-logo img {
            transition: all 0.3s ease;
        }
        
        .footer__about-logo:hover img {
            filter: brightness(0) invert(79%) sepia(29%) saturate(1203%) hue-rotate(5deg) brightness(92%) contrast(91%);
        }
        
        .footer__about-moto {
            color: #b8b8b8;
            line-height: 1.7;
            margin-top: 20px;
            max-width: 400px;
        }
        
        .footer__links-tittle h6 {
            color: #d4af37;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .footer__links-tittle h6::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f4e4a6, #d4af37);
        }
        
        .footer__linklist {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer__linklist-item {
            margin-bottom: 12px;
        }
        
        .footer__linklist-item a {
            color: #b8b8b8;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
            font-size: 15px;
        }
        
        .footer__linklist-item a::before {
            color: #d4af37;
            margin-right: 8px;
            font-size: 10px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-5px);
        }
        
        .footer__linklist-item a:hover {
            color: #d4af37;
            padding-left: 15px;
        }
        
        .footer__linklist-item a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }
        
        .footer__bottom {
            padding-top: 20px;
        }
        
        .footer__end {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer__end-copyright p {
            color: #b8b8b8;
            margin: 0;
            font-size: 14px;
        }
        
        .footer__end-copyright p a {
            color: #d4af37;
            text-decoration: none;
        }
        
        .footer__end-copyright p a:hover {
            text-decoration: underline;
        }
        
        .social {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 15px;
        }
        
        .social__link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            color: #b8b8b8;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .social__link:hover {
            background: #d4af37;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .footer__shape {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .footer__shape-item {
            position: absolute;
        }
        
        .footer__shape-item--1 {
            top: 20%;
            left: 5%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        .footer__shape-item--2 {
            bottom: 15%;
            right: 10%;
            opacity: 0.05;
        }
        
        .footer__shape-item--2 span {
            display: block;
            width: 50px;
            height: 50px;
            border: 2px solid #d4af37;
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }
        
        .footer__shape-item--4 {
            top: 40%;
            right: 15%;
            opacity: 0.1;
            animation: rotate 15s linear infinite;
        }
        
        .footer__shape-item--5 {
            bottom: 25%;
            left: 15%;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 0.7; }
            50% { transform: scale(1.2); opacity: 0.3; }
            100% { transform: scale(0.8); opacity: 0.7; }
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer__end {
                flex-direction: column;
                text-align: center;
            }
            
            .footer__about-moto {
                max-width: 100%;
            }
            
            .footer__shape-item {
                display: none;
            }
        }