    :root {
            --primary-color: #4a6bff;
            --text-color: #333;
            --hover-color: #3a56d4;
        }
        

        body{
             font-family: "Merriweather", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }



        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-left: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-logo {
            height: 50px;
            width: auto;
            object-fit: contain;
        }
        
        .navbar-nav {
            margin: 0 auto;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        
        .btn-signup {
            background-color: var(--primary-color);
            border: none;
            color: white;
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-signup:hover {
            background-color: var(--hover-color);
            color: white;
        }
        
        .btn-signin {
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-signin:hover {
            background-color: #f0f3ff;
            color: var(--primary-color);
        }
        
        .flag-icon {
            width: 20px;
            height: 15px;
            margin-right: 8px;
            border-radius: 2px;
            display: inline-block;
        }
        .nav-link.active { 
            border-bottom: 2px solid var(--primary-color);
        }
        .language-option {
            display: flex;
            align-items: center;
        }
        
        /* Mobile sidebar styles - now from the left */
        .offcanvas {
            width: 280px !important;
        }
        
        .offcanvas-start {
            left: 0;
            transform: translateX(-100%);
        }
        
        .offcanvas-header {
            border-bottom: 1px solid #eee;
            padding: 1rem 1.5rem;
        }
        
        .offcanvas-body {
            padding: 1rem 0;
        }
        
        .mobile-nav-item {
            padding: 0.75rem 1.5rem;
            border-bottom: 1px solid #f5f5f5;
            color: var(--text-color);
            text-decoration: none;
            display: block;
            transition: background-color 0.2s;
        }
        
        .mobile-nav-item:hover {
            background-color: #f8f9fa;
            color: var(--primary-color);
        }
        
        .mobile-language-selector {
            padding: 1rem 1.5rem;
            border-top: 1px solid #eee;
        }
        
        .mobile-auth-buttons {
            padding: 1rem 1.5rem;
            display: flex;
            gap: 10px;
        }
        
        .mobile-auth-buttons .btn {
            flex: 1;
            text-align: center;
        }
        
        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1030;
            display: none;
        }
        
        .mobile-bottom-nav .nav-item {
            flex: 1;
            text-align: center;
        }
        
        .mobile-bottom-nav .nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.5rem;
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.75rem;
            transition: all 0.3s;
        }
        
        .mobile-bottom-nav .nav-link.active {
            color: var(--primary-color);
        }
        
        .mobile-bottom-nav .nav-link i {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }
        
        .mobile-bottom-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .navbar-nav .nav-item {
                margin-bottom: 0.5rem;
            }
            
            .auth-buttons {
                margin-top: 1rem;
            }
            
            .navbar-logo {
                height: 35px;
            }
        }
        
        @media (max-width: 767.98px) {
            .mobile-bottom-nav {
                display: flex;
            }
            
            body {
                padding-bottom: 70px;
            }
        }
        
        @media (max-width: 575.98px) {
            .auth-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .auth-buttons .btn {
                width: 100%;
            }
            
            .navbar-logo {
                height: 30px;
            }
            
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .mobile-bottom-nav .nav-link {
                font-size: 0.7rem;
                padding: 0.4rem;
            }
            
            .mobile-bottom-nav .nav-link i {
                font-size: 1.1rem;
            }
        }


        .hero-section {
            background: linear-gradient(to bottom, 
                #000000 0%, 
                #1a1a3a 25%, 
                #2d2d6b 50%, 
                #4a6bff 100%);
            color: white;
            padding: 40px 0 0; /* Reduced bottom padding */
            position: relative;
            overflow: hidden;
        }
        
        /* Adding a subtle animation to the gradient */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(74, 107, 255, 0.1) 0%, 
                rgba(0, 0, 0, 0.2) 100%);
            animation: gradientShift 8s ease-in-out infinite;
            z-index: 0;
        }
        
        @keyframes gradientShift {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 0.8;
            }
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto 40px; /* Reduced bottom margin */
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
            background: linear-gradient(to right, #ffffff, #e0e0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #e0e0ff;
        }
        
        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem; /* Reduced bottom margin */
            color: #ccccff;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 2.5rem; /* Reduced bottom margin */
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-hero-signup {
            background: linear-gradient(135deg, #ffffff, #f0f0ff);
            color: var(--primary-color);
            border: none;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .btn-hero-signup:hover {
            transform: translateY(-3px);
            background-color: rgba(255, 255, 255, 0.1);
            color: black;
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }
        
        .btn-hero-signin {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }
        
        .btn-hero-signin:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }
        
        
        .slider-section {
            position: relative;
            z-index: 1;
            margin-bottom: 0; 
        }
        
        .slider-container {
            position: relative;
            max-width: 800px;
            background: transparent;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: none;
            border-radius: 20px;
        }
        
        .slider {
            position: relative;
            height: 450px;
            border-radius: 20px;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 80%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-1 {
            background-image: url('img/hero1.jpg');
        }
        
        .slide-2 {
            background-image: url('img/hero2.jpg');
        }
        
        .slide-3 {
            background-image: url('img/hero3.jpg');
        }
        
        .slide-4 {
            background-image: url('img/hero4.jpg');
        }
        .slide-5{
            background-image: url('img/hero5.jpg');
        }
        
        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 60px 0 0; /* Reduced bottom padding */
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .slider {
                height: 400px;
            }
            
            .floating-element {
                display: none;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-section {
                padding: 50px 0 0; /* Reduced bottom padding */
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-hero-signup,
            .btn-hero-signin {
                width: 200px;
            }
            
            .slider {
                height: 350px;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .slider {
                height: 300px;
            }
            
            .hero-buttons {
                gap: 10px;
            }
            
            .btn-hero-signup,
            .btn-hero-signin {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 400px) {
            .slider {
                height: 250px;
            }
            
            .hero-title {
                font-size: 1.6rem;
            }
        }

        .crypto-ticker-section {
            background: #f8f9fa;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
            overflow: hidden;
            position: relative;
        }
        
        .ticker-container {
            display: flex;
            animation: scroll 60s linear infinite;
            width: max-content;
        }
        
        .ticker-container:hover {
            animation-play-state: paused;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .crypto-item {
            display: flex;
            align-items: center;
            padding: 6px 15px;
            margin-right: 20px;
            background: white;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border-left: 2px solid var(--primary-color);
            min-width: 160px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .crypto-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .crypto-icon {
            width: 20px;
            height: 20px;
            margin-right: 8px;
            border-radius: 50%;
        }
        
        .crypto-name {
            font-weight: 600;
            font-size: 12px;
            color: var(--text-color);
            white-space: nowrap;
        }
        
        .crypto-symbol {
            font-size: 10px;
            color: #6c757d;
            margin-left: 4px;
        }
        
        .crypto-price {
            font-weight: 700;
            font-size: 12px;
            margin-left: 8px;
            color: var(--text-color);
        }
        
        .price-change {
            font-size: 10px;
            font-weight: 600;
            margin-left: 8px;
            display: flex;
            align-items: center;
        }
        
        .price-change.positive {
            color: #28a745;
        }
        
        .price-change.negative {
            color: #dc3545;
        }
        
        .change-icon {
            margin-right: 2px;
            font-size: 8px;
        }
        
        .ticker-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .ticker-label i {
            margin-right: 6px;
            color: var(--primary-color);
        }
        
        .refresh-btn {
            background: transparent;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            margin-left: 8px;
            transition: transform 0.3s;
            font-size: 12px;
        }
        
        .refresh-btn:hover {
            transform: rotate(180deg);
        }
        
        /* Gradient fade effect on edges */
        .ticker-wrapper {
            position: relative;
            overflow: hidden;
        }
        
        .ticker-wrapper::before,
        .ticker-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 50px;
            height: 100%;
            z-index: 2;
        }
        
        .ticker-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #f8f9fa, transparent);
        }
        
        .ticker-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #f8f9fa, transparent);
        }
        
        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .crypto-item {
                min-width: 140px;
                padding: 5px 12px;
                margin-right: 15px;
            }
            
            .crypto-price {
                font-size: 11px;
            }
            
            .ticker-label {
                font-size: 11px;
            }
        }
        
        @media (max-width: 575.98px) {
            .crypto-ticker-section {
                padding: 10px 0;
            }
            
            .crypto-item {
                min-width: 130px;
                padding: 4px 10px;
                margin-right: 12px;
            }
            
            .crypto-name {
                font-size: 11px;
            }
            
            .ticker-label {
                font-size: 10px;
            }
        }

         
        .scrolling-banner {
            width: 100%;
            overflow: hidden;
            background-color: bisque;
            padding: 5px 0;
            border-radius: 5px;
        }
        
        .scrolling-text {
            white-space: nowrap;
            display: inline-block;
            padding-left: 100%;
            animation: scroll 45s linear infinite;
            font-size: 1rem;
            color: red;
            font-weight: 500;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .scrolling-text {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .scrolling-text {
                font-size: 0.8rem;
                animation-duration: 45s;
            }
        }

         .how-it-works-section {
            background: white;
            color: black;
            padding: 60px 20px;
            border-radius: 10px;
            margin: 20px 0;
            
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }
        .section-subtitle {
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.1rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        .step-card {
            padding: 25px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .step-image {
            width: 100%;
            max-width: 120px;
            margin-bottom: 20px;
        }
        .step-title {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .step-description {
            opacity: 0.9;
            line-height: 1.6;
        }
        .step-container {
            position: relative;
        }
        @media (max-width: 768px) {
            .step-card {
                margin-bottom: 30px;
                text-align: center;
            }
            .step-image {
                max-width: 100px;
                height: 100px;
            }
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
        }
        .header h1 {
            font-weight: 700;
            margin-bottom: 10px;
            color: black;
        }
        .header p {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
        .card {
            border-radius: 20px;
            overflow: hidden;
            color: white;
            background: white;
            border: none;
            border: 1px solid whitesmoke;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);

        }
        .card-img-top {
            height: 230px;
            object-fit: fill;
            width: 100%;
        }
        .badge-container {
            position: relative;
            margin-top: -25px;
            z-index: 1;
            text-align: center;
        }
        .contract-badge {
            font-weight: bold;
            font-size: 1rem;
            padding: 10px 15px;
            border-radius: 12px;
            background: whitesmoke;
            color: rgb(235, 80, 80);
            display: inline-block;
        }
        .amount-period {
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 8px;
            color: black;
        }
        .contract-details {
            padding: 20px;
        }
        .detail-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.9rem;
            color: #000000;
        }
        .detail-item i {
            color: black;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        .detail-label {
            flex: 1;
        }
        .detail-value {
            font-weight: 500;
        }
        .highlight {
            color: black;
            font-weight: 600;
        }
        .affiliate-section {
            text-align: center;
            margin: 15px 0;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .affiliate-title {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1rem;
            color: black;
        }
        .affiliate-levels {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        .level-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 5px 10px;
        }
        .level-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid #f0e04c;
            display: flex;
            color: #000000;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            font-weight: bold;
            font-size: 0.9rem;
            
        }
        .level-name {
            font-size: 0.8rem;
            color: black;
        }
        .button-section {
            display: flex;
            gap: 10px;
            margin: 20px 0 15px;
        }
        .btn-card {
            flex: 1;
            padding: 10px;
            font-weight: 600;
            border-radius: 10px;
            border: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        .btn-card-outline-primary {
            background: transparent;
            border: 2px solid #4361ee;
            color: #4361ee;
        }
        .btn-card-outline-primary:hover {
            background: #4361ee;
            color: white;
            transform: translateY(-2px);
        }
        .btn-card-primary {
            background: linear-gradient(90deg, #3a0ca3 0%, #4361ee 100%);
            color: white;
        }
        .btn-card-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
        }
        .progress-section {
            margin-bottom: 5px;
        }
        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.8rem;
            color: black;
        }
        .progress {
            height: 8px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }
        .progress-bar {
            background: linear-gradient(90deg, #3a0ca3 0%, #4361ee 100%);
            border-radius: 10px;
            color: black;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .card-img-top {
                height: 300px;
                object-fit: fill;
                width: 100%;
            }
            .contract-details {
                padding: 15px;
            }
            .level-circle {
                width: 50px;
                height: 50px;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .header h1 {
                font-size: 1.8rem;
            }
            .card-img-top {
                height: 140px;
            }
            .contract-badge {
                font-size: 0.9rem;
                padding: 8px 12px;
            }
            .amount-period {
                font-size: 1rem;
            }
        }

        .profit-calculator {
    background: white;
}

.calculator-card {
    background: gray;
    border-radius: 20px;
    padding: 30px;
    border: none;
    color: white;
}

.calculator-card h2 {
    color: black;
    font-weight: 700;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: black;
    display: block;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: black;
    border-radius: 10px;
    padding: 12px 15px;
    width: 100%;
}

.form-select option {
    background: white;
    color: black;
    padding: 10px;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: black;
}

.result-display {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: black;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-calculate {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 48px;
}

.btn-calculate:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .calculator-card {
        padding: 20px;
    }
    
    .row.align-items-end > div {
        margin-bottom: 15px;
    }
    
    .btn-calculate {
        height: auto;
        padding: 15px 20px;
    }
}

.why-us {
    background: white;
}

.content-wrapper {
    padding-left: 20px;
    padding: 30px;
    border-radius: 10px;
    background-color: gainsboro;
}

.section-title {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
}

.section-subtitle {
    color: #4361ee;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.intro-text {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.advantages-section {
    margin-bottom: 15px;
}

.advantages-title {
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.advantage-item {
    margin-bottom: 10px;
}

.advantage-content h5 {
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 1rem;
}

.advantage-content p {
    color: #666;
    margin: 0;
    line-height: 1.3;
    font-size: 0.9rem;
}

.benefits-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.benefit-item {
    margin-bottom: 5px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item span {
    color: #1a1a2e;
    font-weight: 500;
    line-height: 1.3;
    font-size: 0.9rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.feature-icon {
    color: #28a745;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature span {
    color: #1a1a2e;
    font-weight: 500;
    font-size: 0.85rem;
}

.image-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-section:hover {
    transform: translateY(-3px);
}

.image-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.image-section:hover img {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        padding-left: 0;
        margin-top: 20px;
    }
    
    .image-section img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .image-section {
        padding: 12px;
    }
    
    .image-section img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 12px 10px;
        margin-bottom: 12px;
    }
    
    .image-section img {
        height: 180px;
    }
}

.features-section {
    background: white;
}

.feature-card {
    border: 2px solid #4cc9f0;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 201, 240, 0.2);
}

.feature-title {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-desc {
    color: #4361ee;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
}

.transactions-section {
    background: #f8f9fa;
}

.section-title {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.scrolling-wrapper {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.scrolling-content {
    display: flex;
    gap: 15px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.scrolling-reverse {
    animation: scrollReverse 25s linear infinite;
}

.transaction-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #6c757d;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.crypto-icon {
    display: flex;
    align-items: center;
}

.amount {
    font-weight: 600;
    font-size: 0.9rem;
}

.email {
    font-size: 0.8rem;
    opacity: 0.8;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.scrolling-wrapper:hover .scrolling-content {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .transaction-badge {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .amount {
        font-size: 0.8rem;
    }
    
    .email {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .scrolling-content {
        gap: 10px;
    }
    
    .transaction-badge {
        padding: 8px 12px;
    }
}

.about-section {
    background: white;
}

.content-wrapper.bg-grey {
    background: #f8f9fa;
}

.text-content {
    padding-right: 20px;
}

.section-title {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-continue {
    background: linear-gradient(90deg, #3a0ca3 0%, #4361ee 100%);
    border: none;
    color: white;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}

.image-section {
    padding: 0;
}

.image-section img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .image-section img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .content-wrapper.bg-grey {
        padding: 25px !important;
    }
    
    .section-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .image-section img {
        height: 350px;
    }
    
    .btn-continue {
        width: 100%;
        padding: 16px 40px;
    }
}

@media (max-width: 576px) {
    .content-wrapper.bg-grey {
        padding: 20px !important;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .image-section img {
        height: 280px;
    }
}

.payment-methods {
    background: white;
}

.section-title {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 2.2rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.crypto-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.crypto-logo:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
}

.crypto-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.crypto-logo:hover .crypto-img {
    transform: scale(1.1);
}

.crypto-name {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .crypto-logo {
        padding: 15px 10px;
        gap: 8px;
    }
    
    .crypto-img {
        width: 50px;
        height: 50px;
    }
    
    .crypto-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .crypto-img {
        width: 45px;
        height: 45px;
    }
    
    .crypto-name {
        font-size: 0.75rem;
    }
    
    .crypto-logos .row {
        gap: 10px !important;
    }
    
    .crypto-logo {
        padding: 12px 8px;
    }
}

.footer-section {
    background: #309967;
    color: white;
    padding: 60px 0 40px 0;
}

.footer-logo img {
    max-width: 150px;
}

.footer-text {
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid white;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: whitesmoke;
    transform: translateX(5px);
}

.contact-info {
    color: white;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.contact-item i {
    color: white;
    width: 16px;
}

.footer-divider {
    height: 1px;
    background: white;
    opacity: 0.3;
}

.copyright-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.copyright-text {
    color: white;
    font-size: 0.95rem;
}

.copyright-logo {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 30px 0;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .copyright-text {
        font-size: 0.9rem;
    }
    
    .copyright-logo {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0 25px 0;
    }
    
    .copyright-section {
        flex-direction: row;
        gap: 12px;
    }
    
    .copyright-logo {
        display: block;
        width: 20px;
        height: 20px;
    }
    
    .footer-heading {
        text-align: left;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .footer-heading {
        width: 100%;
        text-align: center;
    }
}

.notes-section {
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.notes-container {
    max-width: 90%px;
    margin: 0;
}

.notes-textbox {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.notes-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.notes-content {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    text-align: left;
}

.notes-content p {
    margin-bottom: 12px;
}

.notes-content p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #666;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .notes-section {
        padding: 20px 15px;
    }
    
    .notes-textbox {
        padding: 25px;
    }
    
    .notes-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .notes-content {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .notes-section {
        padding: 15px 10px;
    }
    
    .notes-textbox {
        padding: 20px;
    }
    
    .notes-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .notes-content {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .notes-content p {
        margin-bottom: 10px;
    }
}

     .image-only-section {
    padding: 3rem 0;
    background-color: #fff;
}

.centered-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-image {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.terms-section {
    padding: 20px;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.terms-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.terms-content {
    width: 100%;
    box-sizing: border-box;
}

.terms-content p {
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.terms-content p:first-child {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .terms-section {
        padding: 15px;
    }
    
    .terms-content p {
        margin-bottom: 14px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 480px) {
    .terms-section {
        padding: 12px;
    }
    
    .terms-content p {
        margin-bottom: 12px;
        line-height: 1.4;
    }
}

