/* Base Styles */
:root {
  --primary-color: #5a29a4;
  --primary-light: #8a3ffc;
  --primary-dark: #5a29a4;
  --secondary-color: #4caf50;
  --secondary-light: #6abf69;
  --secondary-dark: #388e3c;
  --text-color: #333333;
  --text-light: #666666;
  --text-dark: #111111;
  --background-color: #ffffff;
  --background-light: #f5f7fa;
  --background-dark: #e1e5ee;
  --border-color: #dddddd;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-light);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  color: white;
}

.btn-block {
  display: block;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: var(--primary-color);
}

.highlight {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo a i {
  font-size: 1.2rem;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--border-radius);
}

nav ul li a:hover,
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--border-radius);
}

.dropdown-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}




/* Mobile Navigation Styles */
@media (max-width: 768px) {
  header .container {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .nav-toggle-label {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    margin-top: 10px;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  .nav-toggle-label span {
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-toggle-label span::before {
    content: "";
    top: -10px;
  }

  .nav-toggle-label span::after {
    content: "";
    top: 10px;
  }

  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked + .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--primary-color);
    margin-top: 10px;
  }

  .nav-toggle:checked ~ nav ul {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 15px 10px;
  }
}



/* Hero Section */
.hero {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--background-light);
  transform: skewY(-3deg);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.cta-buttons {
  display: flex;
  gap: 15px;
}

.track-money-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  width: 400px;
}

.track-money-card h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 1.8rem;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
  padding: 60px 0;
  background-color: white;
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 15px;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--background-light);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  min-width: 350px;
  flex: 1;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  position: absolute;
}

.testimonial-content p::before {
  left: 0;
  top: -10px;
}

.testimonial-content p::after {
  right: 0;
  bottom: -20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--primary-color);
}

.author-location {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer Styles */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  opacity: 0.8;
}

.footer-column ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* About Page Styles */
.about-story {
  padding: 80px 0;
  background-color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-values {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.value-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 1.8rem;
}

.team {
  padding: 80px 0;
  background-color: white;
}

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

.team-member {
  text-align: center;
}

.member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: var(--box-shadow);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.member-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.milestones {
  padding: 80px 0;
  background-color: var(--background-light);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}

.timeline-date {
  width: 120px;
  text-align: right;
  padding-right: 30px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.timeline-content {
  /*width: calc(100% - 150px);*/
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Services Page Styles */
.services-overview {
  padding: 80px 0;
  background-color: white;
}

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

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.8rem;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-features li i {
  color: var(--secondary-color);
  margin-top: 3px;
}

.comparison {
  padding: 80px 0;
  background-color: var(--background-light);
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--background-light);
}

.service-process {
  padding: 80px 0;
  background-color: white;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-step .step-content {
  flex: 1;
}

.process-step .step-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact Page Styles */
.contact-options {
  padding: 80px 0;
  background-color: white;
}

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

.contact-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 1.8rem;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-card p {
  margin-bottom: 20px;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 5px;
}

.locations {
  padding: 80px 0;
  background-color: white;
}

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

.location-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-image {
  height: 200px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.location-card:hover .location-image img {
  transform: scale(1.05);
}

.location-card h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
}

.location-card p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.faq {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  color: var(--primary-color);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

/* Track Money Page Styles */
.track-money-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  min-height: calc(100vh - 70px - 400px);
}

.track-money-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.track-money-left {
  flex: 1;
  color: white;
}

.track-money-illustration {
  margin-bottom: 30px;
}

.track-money-message h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.track-money-message h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}

.track-money-right {
  width: 500px;
}

.track-money-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.track-money-header {
  margin-bottom: 30px;
}

.last-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.transfer-status {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.transfer-timeline {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}

.transfer-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
  background-color: var(--secondary-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: -30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--secondary-color);
}

.timeline-marker.completed {
  background-color: var(--secondary-color);
}

.timeline-time {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.timeline-content h3 {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
}

.timeline-content h3 .text-muted {
  color: var(--text-light);
  font-weight: 400;
}

.timeline-content h3 .amount,
.timeline-content h3 .name {
  color: var(--primary-color);
  font-weight: 600;
}

.timeline-content h3.highlight {
  color: var(--secondary-color);
  font-weight: 600;
}

.transfer-note {
  background-color: var(--background-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.transfer-note h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.transfer-accordion .accordion-item {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  color: var(--primary-color);
  font-size: 1rem;
}

.accordion-toggle {
  color: var(--primary-color);
}

.accordion-content {
  padding-top: 15px;
  display: none;
}

.transfer-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.transfer-details .detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-light);
}

.detail-value {
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero .container {
    flex-direction: column;
  }

  .track-money-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-buttons .dropdown {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .track-money-container {
    flex-direction: column;
  }

  .track-money-left {
    text-align: center;
  }

  .track-money-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
  }

  .nav-toggle-label span {
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
  }

  .nav-toggle-label span::before {
    top: -8px;
  }

  .nav-toggle-label span::after {
    bottom: -8px;
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    background-color: transparent;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-toggle-label span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
  }

  .nav-toggle:checked ~ nav {
    height: auto;
    padding: 20px 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav ul li a {
    display: block;
    padding: 15px 20px;
    border-radius: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-date {
    width: auto;
    text-align: left;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .timeline-content {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .track-money-message h1 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Benefits Section with Abstract Classes */
.s-wrapper {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.s-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

/* Grid Layout */
.g-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card Item */
.c-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.c-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.c-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #8a3ffc;
  opacity: 0.2;
}

.i-accent {
  width: 40px;
  height: 40px;
  stroke: #8a3ffc;
  stroke-width: 1.5;
}

.c-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.c-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .g-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .g-layout {
    grid-template-columns: 1fr;
  }
  
  .s-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .c-item {
    padding: 15px;
  }
}


  /* Abstract CSS classes */
      
        .c-flex {
            display: flex;
            align-items: center;
        }

        .c-flex--column {
            flex-direction: column;
        }

        .c-flex--center {
            justify-content: center;
        }

        .c-flex--between {
            justify-content: space-between;
        }

    
      

        .c-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .c-heading {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .c-text {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .c-image {
            max-width: 100%;
            height: auto;
        }

        .c-image--device {
            max-width: 600px;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
        }

        .c-badge-container {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .c-badge {
            height: 50px;
            transition: transform 0.3s ease;
        }

        .c-badge:hover {
            transform: scale(1.05);
        }

        .c-coming-soon {
            background-color: #ff6b6b;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .c-heading {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .c-grid {
                grid-template-columns: 1fr;
            }

            .c-section--hero {
                padding: 60px 0;
                min-height: auto;
            }

            .c-heading {
                font-size: 2rem;
            }

            .c-text {
                font-size: 1rem;
            }

            .c-image--device {
                max-width: 400px;
                margin: 0 auto;
            }

            .c-grid--reverse {
                display: flex;
                flex-direction: column-reverse;
            }
        }