
    .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #f0f4f8;
        }
        
        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            color: #4a5568;
        }
        
        .faq-toggle {
            color: #805ad5;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: #718096;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        :root {
            --primary: #6c63ff;
            --secondary: #00d9ff;
            --dark: #1a1a2e;
            --light: #f5f5f5;
            --success: #00b894;
            --warning: #fdcb6e;
            --danger: #ff7675;
            --gray: #718096;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, var(--dark), #2c2c54);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary);
            font-size: 28px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
    .login-btn {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

    

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark), #2c2c54);
            color: white;
            padding: 100px 0 150px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(108, 99, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 217, 255, 0.2) 0%, transparent 50%);
        }

        .hero-content {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero span {
            color: var(--secondary);
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            border: none;
            text-align: center;
            padding: 15px 280px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: inline-block;
            text-decoration: none;
        }

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

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 100%;
            animation: float 3s ease-in-out infinite;
        }

        .floating-coins {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .coin {
            position: absolute;
            opacity: 0.1;
            animation: floatCoin 15s linear infinite;
        }

        .coin:nth-child(1) {
            top: 10%;
            left: 10%;
            font-size: 2rem;
            animation-duration: 20s;
        }

        .coin:nth-child(2) {
            top: 20%;
            left: 80%;
            font-size: 1.5rem;
            animation-duration: 15s;
            animation-delay: 2s;
        }

        .coin:nth-child(3) {
            top: 60%;
            left: 15%;
            font-size: 1.8rem;
            animation-duration: 25s;
            animation-delay: 5s;
        }

        .coin:nth-child(4) {
            top: 70%;
            left: 75%;
            font-size: 2.2rem;
            animation-duration: 18s;
            animation-delay: 1s;
        }

        .coin:nth-child(5) {
            top: 35%;
            left: 50%;
            font-size: 1.6rem;
            animation-duration: 22s;
            animation-delay: 3s;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: white;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 217, 255, 0.05));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Statistics Section */
        .statistics {
            padding: 80px 0;
            background: linear-gradient(135deg, #f6f9fc, #edf2f7);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-card {
            background: white;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-icon {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: var(--gray);
            font-size: 1rem;
        }

      /* How It Works Section Styles */
.how-it-works {
  padding: 80px 0;
  background-color: #ffffff;
}

.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #4a90e2;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.step {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.step-icon i {
  font-size: 32px;
  color: #fff;
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 15px 0;
}

.step p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .steps-container {
    gap: 20px;
  }
  
  .step {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .step:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 24px;
  }
  
  .section-title p {
    font-size: 14px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon i {
    font-size: 28px;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .steps-container {
    gap: 20px;
  }
  
  .step {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .step:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 24px;
  }
  
  .section-title p {
    font-size: 14px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon i {
    font-size: 28px;
  }
}

        /* Why Choose Us Section */
        .why-choose-us {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark), #2c2c54);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .why-choose-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
        }

        .why-choose-us .section-title h2 {
            color: white;
        }

        .why-choose-us .section-title p {
            color: rgba(255, 255, 255, 0.7);
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .reason-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 25px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .reason-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }

        .reason-icon {
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .reason-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .reason-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #f8fafc;
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .accordion-header {
            padding: 20px;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background-color: #f8fafc;
        }

        .accordion-header h3 {
            font-size: 1.1rem;
            color: var(--dark);
            font-weight: 600;
        }

        .accordion-icon {
            font-size: 1.2rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-content p {
            color: var(--gray);
            padding-bottom: 20px;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-item.active .accordion-content {
            max-height: 300px;
        }

       /* Enhanced Telegram Section */
.telegram {
    background: linear-gradient(135deg, var(--dark), #2c2c54);
    
    color: white;
    text-align: center;
    padding: 60px 0;
}
.t-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0088cc; /* Telegram blue */
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
}

.t-btn i {
  font-size: 18px;
}

.t-btn:hover {
  background-color: #007ab8;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 136, 204, 0.4);
}

.t-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 136, 204, 0.2);
}


.telegram h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.telegram p {
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.telegram .btn {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 15px 35px;
    margin-bottom: 40px;
}

.telegram .btn i {
    margin-right: 10px;
}

.telegram .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.telegram-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.telegram-benefit {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.telegram-benefit i {
    font-size: 1.2rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .telegram-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .telegram-benefit {
        width: 90%;
    }
}
        /* Contact Section */
        .contact {
            background: white;
        }
        
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .contact-info p {
            margin-bottom: 30px;
            color: #6c757d;
        }
        
        .contact-details {
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(76, 111, 255, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark), #2c2c54);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }
        
        .footer-about {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes floatCoin {
            0% {
                transform: translateY(0) rotate(0);
            }
            50% {
                transform: translateY(-100px) rotate(180deg);
            }
            100% {
                transform: translateY(-200px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                margin-bottom: 40px;
            }

            .hero p {
                margin: 0 auto 30px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--dark);
                flex-direction: column;
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.3s ease;
            }

            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            .hero {
                padding: 80px 0 120px;
            }

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

            .section-title h2 {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .cta-btn {
                padding: 12px 150px;
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Login container */
.row {
    background-color: rgba(20, 30, 60, 0.5);
    border-radius: 8px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(0, 0, 0, 0.15);
    max-width: 500px;
    margin: 2rem auto;
    overflow: hidden;
}

/* Text Styling */
.text-center {
    text-align: center;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.8rem 2rem;
    font-size: 16px;
    line-height: 1.5;
    color: white;
    background-color: rgba(20, 30, 60, 0.5);
    background-clip: padding-box;
    border: 1px solid #1da1f2;
    border-radius: 15px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.form-control:focus {
    background-color: rgba(29, 161, 242, 0.1);
    border-color: #47b8ff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(29, 161, 242, 0.25);
}

    background: linear-gradient(135deg, #1da1f2, #9945ff);
    
    /* Payment Proof Section Styles */
.payment-proof {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.payment-proof .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #4a90e2;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.payment-table-container {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.table-responsive {
  overflow-x: auto;
  width: 100%;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.payment-table thead {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.payment-table th {
  padding: 15px 20px;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-table tbody tr {
  border-bottom: 1px solid #eaeaea;
  transition: background-color 0.3s ease;
}

.payment-table tbody tr:last-child {
  border-bottom: none;
}

.payment-table tbody tr:hover {
  background-color: #f5f9ff;
}

.payment-table td {
  padding: 12px 20px;
  color: #555;
  font-size: 14px;
}

.payment-table th:first-child,
.payment-table td:first-child {
  padding-left: 25px;
}

.payment-table th:last-child,
.payment-table td:last-child {
  padding-right: 25px;
}

/* Column widths */
.payment-table th:nth-child(1),
.payment-table td:nth-child(1) {
  width: 10%;
}

.payment-table th:nth-child(2),
.payment-table td:nth-child(2) {
  width: 40%;
}

.payment-table th:nth-child(3),
.payment-table td:nth-child(3) {
  width: 25%;
}

.payment-table th:nth-child(4),
.payment-table td:nth-child(4) {
  width: 25%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payment-proof {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 26px;
  }
  
  .payment-table th,
  .payment-table td {
    padding: 10px 15px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 22px;
  }
  
  .section-title p {
    font-size: 14px;
  }
  
  .payment-table {
    min-width: 500px; /* Ensures table doesn't get too squished */
  }
 