* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #F9FAFB;
            color: #1F2937;
            line-height: 1.6;
            font-size: 16px;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #1E3A8A;
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: background 0.3s ease;
        }

        .header.scrolled {
            background: #1E3A8A;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 500;
        }

        .logo img {
            width: 40px;
            margin-right: 10px;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.1);
        }

        .menu-button {
            background: #FBBF24;
            border: 2px solid #FBBF24;
            color: #1E3A8A;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .menu-button:hover {
            background: #E5A712;
            border-color: #E5A712;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .nav-links, .menu-dropdown {
            display: none;
            list-style: none;
            background: #1E3A8A;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            position: absolute;
            top: 60px;
            right: 20px;
            width: 200px;
            z-index: 999;
        }

        .nav-links li, .menu-dropdown li {
            padding: 10px 15px;
        }

        .nav-links a, .menu-dropdown a {
            color: white;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }

        .nav-links a:hover, .menu-dropdown a:hover {
            color: #FBBF24;
        }

        .menu-dropdown.active {
            display: block;
        }

        .client-login {
            background: #FBBF24;
            color: #1E3A8A;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .client-login:hover {
            background: #E5A712;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 40px 20px;
            position: relative;
            margin-top: 60px;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.8;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(59, 130, 246, 0.5));
            z-index: 1;
        }

        .hero h1, .hero p, .hero .cta-button {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 20px;
            max-width: 600px;
        }

        .cta-button {
            background-color: #FBBF24;
            color: #1E3A8A;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #FBBF24;
            color: #1E3A8A;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .sticky-cta:hover {
            background: #E5A712;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .crypto-section {
            background: linear-gradient(to bottom, #FFFFFF, #F9FAFB);
            padding: 60px 20px;
        }

        .crypto-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 40px;
            text-align: center;
        }

        .crypto-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }

        .crypto-box {
            width: 100%;
            max-width: 300px;
            background: #F9FAFB;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .crypto-box:hover {
            transform: translateY(-5px);
        }

        .crypto-box img {
            width: 100%;
            max-width: 150px;
            height: auto;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .crypto-box img:hover {
            transform: scale(1.05);
        }

        .crypto-box h3 {
            font-size: 1.5rem;
            color: #1E3A8A;
            margin-bottom: 10px;
        }

        .crypto-box p {
            font-size: 1rem;
            color: #6B7280;
        }

        .services-section {
            background: linear-gradient(to bottom, #F1F5F9, #E5E7EB);
            padding: 60px 20px;
        }

        .services-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 40px;
            text-align: center;
        }

        .services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }

        .service-box {
            width: 100%;
            max-width: 350px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .service-box:hover {
            transform: translateY(-5px);
        }

        .service-box h3 {
            font-size: 1.3rem;
            color: #1E3A8A;
            margin-bottom: 10px;
        }

        .service-box p {
            font-size: 0.9rem;
            color: #6B7280;
        }

        .service-box p span {
            color: #FBBF24;
            font-weight: 500;
        }

        .testimonials-section {
            background: #FFFFFF;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 40px;
            text-align: center;
        }

        .swiper-container {
            width: 100%;
            padding: 20px;
            overflow: hidden;
        }

        .swiper-slide {
            width: 350px;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .swiper-slide-active {
            opacity: 1;
        }

        .swiper-pagination {
            text-align: center;
            margin-top: 10px;
        }

        .swiper-button-next, .swiper-button-prev {
            color: #FBBF24;
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 20px;
        }

        .testimonial-box {
            min-width: 350px;
            background: #F9FAFB;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-right: 20px;
            transition: transform 0.3s ease;
        }

        .testimonial-box:hover {
            transform: translateY(-5px);
        }

        .testimonial-box p {
            font-size: 0.9rem;
            color: #6B7280;
            font-style: italic;
        }

        .testimonial-box p span {
            color: #FBBF24;
            font-weight: 500;
        }

        .testimonial-box span {
            display: block;
            font-size: 0.8rem;
            color: #1E3A8A;
            margin-top: 10px;
            font-weight: 500;
        }

        .box-section {
            background: linear-gradient(to bottom, #1E3A8A, #102156);
            padding: 60px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .box-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .box-section p {
            font-size: 1.1rem;
            font-weight: 300;
            margin-bottom: 40px;
            text-align: center;
        }

        .trade-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .trade-box {
            width: 100%;
            max-width: 300px;
            background: white;
            color: #1E3A8A;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .trade-box:hover {
            transform: translateY(-5px);
        }

        .trade-box .icon {
            width: 60px;
            height: auto;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .trade-box .icon:hover {
            transform: scale(1.05);
        }

        .trade-box h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .trade-box p {
            font-size: 0.9rem;
            color: #6B7280;
        }

        .pricing-section {
            background: #FFFFFF;
            padding: 60px 20px;
            text-align: center;
        }

        .pricing-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 20px;
        }

        .pricing-section .intro {
            font-size: 1.1rem;
            color: #6B7280;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }

        .pricing-box {
            width: 100%;
            max-width: 300px;
            background: #1E3A8A;
            color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .pricing-box:hover {
            transform: translateY(-5px);
        }

        .pricing-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .pricing-box .price {
            font-size: 2rem;
            color: #FBBF24;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .pricing-box ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .pricing-box ul li {
            font-size: 0.9rem;
            margin: 10px 0;
        }

        .pricing-box .choose-plan {
            display: inline-block;
            background: #FBBF24;
            color: #1E3A8A;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .pricing-box .choose-plan:hover {
            background: #E5A712;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .bitcoin-overview {
            background: #F9FAFB;
            padding: 20px;
            border-radius: 10px;
            max-width: 600px;
            margin: 40px auto 0;
            text-align: left;
        }

        .bitcoin-overview h3 {
            font-size: 1.5rem;
            color: #1E3A8A;
            margin-bottom: 10px;
        }

        .bitcoin-overview p {
            font-size: 1rem;
            color: #6B7280;
        }

        .growth-section {
            background: linear-gradient(to bottom, #1E3A8A, #102156);
            padding: 60px 20px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .growth-section h2 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .growth-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .growth-stat {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            width: 100%;
            max-width: 300px;
            transition: transform 0.3s ease;
        }

        .growth-stat:hover {
            transform: translateY(-5px);
        }

        .growth-stat .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #10B981;
            margin-bottom: 10px;
        }

        .growth-stat .label {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .growth-section .globe {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.2;
            z-index: 0;
            max-width: 50%;
            height: auto;
        }

        .education-section {
            background: #FFFFFF;
            padding: 60px 20px;
            text-align: center;
        }

        .education-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 30px;
        }

        .education-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .education-text {
            flex: 1;
            min-width: 300px;
            text-align: left;
        }

        .education-text h3 {
            font-size: 1.5rem;
            color: #1E3A8A;
            margin-bottom: 15px;
        }

        .education-text ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .education-text ul li {
            font-size: 1rem;
            color: #6B7280;
            margin: 10px 0;
            position: relative;
            padding-left: 20px;
        }

        .education-text ul li:before {
            content: '✔';
            color: #FBBF24;
            position: absolute;
            left: 0;
        }

        .education-video {
            flex: 1;
            min-width: 300px;
        }

        .education-video iframe {
            width: 100%;
            max-width: 560px;
            height: 315px;
            border: none;
            border-radius: 10px;
        }

        .insights-section {
            background: linear-gradient(to bottom, #F9FAFB, #E5E7EB);
            padding: 60px 20px;
            text-align: center;
        }

        .insights-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 30px;
        }

        .insights-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .insight-box {
            width: 100%;
            max-width: 350px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .insight-box:hover {
            transform: translateY(-5px);
        }

        .insight-box h3 {
            font-size: 1.3rem;
            color: #1E3A8A;
            margin-bottom: 10px;
        }

        .insight-box p {
            font-size: 0.9rem;
            color: #6B7280;
        }

        .insight-box a {
            color: #FBBF24;
            text-decoration: none;
            font-weight: 500;
        }

        .insight-box a:hover {
            text-decoration: underline;
        }

        .faq-section {
            background: #FFFFFF;
            padding: 60px 20px;
            text-align: center;
        }

        .faq-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 30px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .faq-container details {
            margin-bottom: 15px;
            background: #F9FAFB;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .faq-container summary {
            font-size: 1.1rem;
            color: #1E3A8A;
            cursor: pointer;
            font-weight: 500;
        }

        .faq-container p {
            font-size: 0.9rem;
            color: #6B7280;
            margin-top: 10px;
        }

        .chart-section {
            background: linear-gradient(to bottom, #F1F5F9, #E5E7EB);
            padding: 60px 20px;
            text-align: center;
        }

        .chart-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 20px;
        }

        .section {
            padding: 60px 20px;
            max-width: 900px;
            margin: auto;
            text-align: center;
        }

        .section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 20px;
        }

        .section p {
            font-size: 1.1rem;
            color: #6B7280;
        }

        .contact-section {
            background: url('/Imagess/subtle-pattern.png') repeat, #F9FAFB;
            padding: 60px 20px;
        }

        .contact-section h2 {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 20px;
        }

        .contact-section p {
            font-size: 1.1rem;
            color: #6B7280;
        }

        .footer {
            background: linear-gradient(to bottom, #1E3A8A, #102156);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer .trust-badges {
            text-align: center;
            padding: 10px;
        }

        .trust-badges img {
            vertical-align: middle;
            width: 80px;
            margin: 0 10px;
            transition: transform 0.3s ease;
        }

        .trust-badges img:hover {
            transform: scale(1.1);
        }

        .footer a {
            color: #FBBF24;
            text-decoration: none;
            margin: 0 10px;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .footer p {
            margin-top: 20px;
            font-size: 0.9rem;
        }

        .error {
            color: red;
            text-align: center;
            margin: 20px 0;
            font-size: 1rem;
        }

        @media (min-width: 768px) {
            .menu-button {
                display: none;
            }

            .nav-links {
                display: flex;
                position: static;
                width: auto;
                background: none;
                box-shadow: none;
                border-radius: 0;
            }

            .nav-links li {
                margin-left: 20px;
            }

            .hero {
                height: 90vh;
            }

            .hero h1 {
                font-size: 4rem;
            }

            .hero p {
                font-size: 1.4rem;
            }

            .cta-button {
                font-size: 1.3rem;
            }

            .crypto-box, .service-box, .trade-box, .pricing-box, .growth-stat, .insight-box {
                width: 45%;
            }
        }

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 4.5rem;
            }

            .crypto-box, .service-box, .trade-box, .pricing-box, .growth-stat, .insight-box {
                width: 30%;
            }

            .pricing-box {
                width: 23%;
            }
        }