 :root {
     --primary-color: #fa9434;
     --secondary-color: #b56d09;
     --accent-color: #6d30ed;
     --light-color: #b56d09;
     --dark-color: #b56d09;
 }

 body {
     font-family: 'Poppins', sans-serif;
     color: #b56d09;
     overflow-x: hidden;
 }

 .erupaiya-btn {
     background-color: var(--secondary-color);
     color: white;
     padding: 12px 24px;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .erupaiya-btn:hover {
     background-color: var(--accent-color);
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .erupaiya-card {
     border-radius: 15px;
     overflow: hidden;
     transition: all 0.3s ease;
     border: 1px solid rgba(0, 0, 0, 0.1);
 }

 .erupaiya-card p {
     color: #000000;
     font-weight: 500;
 }

 .erupaiya-card h3 {
     color: #b56d09;
     font-weight: 600;
 }

 .erupaiya-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .gradient-bg {
     background: linear-gradient(135deg, var(--primary-color) 0%, #b56d09 100%);
 }

 .service-icon {
     background-color: var(--primary-color);
     width: 70px;
     height: 70px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     margin-bottom: 1rem;
     font-size: 1.5rem;
     color: var(--secondary-color);
     transition: all 0.3s ease;
     color: white;
 }

 .erupaiya-card:hover .service-icon {
     background-color: var(--secondary-color);
     color: var(--primary-color);
 }

 .reward-badge {
     background: white;
     border-radius: 1rem;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .reward-badge:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .reward-badge i {
     transition: transform 0.3s ease;
 }

 .reward-badge:hover i {
     transform: scale(1.2) rotate(-5deg);
 }

 #rewards h2 {
     background: linear-gradient(to right, #f2b35a, #f2b35a);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .reward-highlight {
     background: linear-gradient(135deg, #ffd700, #ff8c00);
     color: black;
     font-weight: bold;
     padding: 0.5rem 1rem;
     border-radius: 9999px;
     display: inline-block;
 }

 .featured-banner {
     background: linear-gradient(135deg, #000000, #b56d09);
     border-radius: 1.5rem;
     overflow: hidden;
     display: flex;
     flex-wrap: wrap;
     color: white;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
 }

 .featured-banner-left {
     padding: 2rem;
     width: 100%;
     max-width: 66.666667%;
 }

 .featured-banner-right {
     background: linear-gradient(to bottom right, #3b82f6, #2563eb);
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 2rem;
     width: 100%;
     max-width: 33.333333%;
 }

 .featured-banner .promo-code {
     background-color: white;
     color: black;
     font-family: monospace;
     padding: 0.25rem 0.5rem;
     border-radius: 0.375rem;
 }

 .featured-banner a {
     background-color: white;
     color: black;
     font-weight: 600;
     padding: 0.75rem 1.5rem;
     border-radius: 9999px;
     transition: background-color 0.3s ease;
 }

 .featured-banner a:hover {
     background-color: #f2b35a;
 }

 /* Mobile menu */

 .mobile-menu {
     display: none;
 }

 .hamburger-btn {
     display: none;
     cursor: pointer;
 }

 /* Responsive styles */

 /* Feature highlights */

 .feature-highlight {
     transition: all 0.3s ease;
 }

 .feature-highlight:hover {
     transform: translateY(-5px);
 }

 .feature-icon {
     background-color: var(--primary-color);
     width: 50px;
     height: 50px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 1rem;
     font-size: 1.2rem;
     color: var(--secondary-color);
 }

 /* Step cards for How It Works section */

 .step-card {
     background: white;
     border-radius: 1rem;
     padding: 2rem;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
     text-align: center;
 }

 .step-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .step-number {
     position: absolute;
     top: -1.25rem;
     left: 50%;
     transform: translateX(-50%);
     background: linear-gradient(to right, #3b82f6, #06b6d4);
     color: white;
     font-weight: 700;
     width: 50px;
     height: 50px;
     line-height: 50px;
     border-radius: 9999px;
     font-size: 1.25rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .step-card i {
     transition: transform 0.3s ease;
 }

 .step-card:hover i {
     transform: scale(1.2) rotate(-3deg);
 }

 #how-it-works h2 {
     background: linear-gradient(to right, #06b6d4, #3b82f6);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* About us */

 /* Contact form */

 .contact-input {
     border: 1px solid #f2b35a;
     border-radius: 8px;
     padding: 12px 16px;
     width: 100%;
     margin-bottom: 1rem;
     transition: all 0.3s ease;
 }

 .contact-input:focus {
     outline: none;
     border-color: var(--accent-color);
     box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
 }

 /* header */

 .erupaiya-header {
     font-family: 'Poppins', sans-serif;
     padding: 100px;
     padding-left: 20px;
 }

 .erupaiya-header * {
     box-sizing: border-box;
 }

 .erupaiya-header {
     background: linear-gradient(135deg, #CFF4FC 0%, #9fe7f9 100%);
     padding: 15px 0;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     position: relative;
 }

 .erupaiya-container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .erupaiya-header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .erupaiya-logo-column {
     flex: 0 0 20%;
 }

 .erupaiya-logo {
     font-size: 24px;
     font-weight: 700;
     color: #000;
     text-decoration: none;
     display: flex;
     align-items: center;
 }

 .erupaiya-logo img {
     height: 40px;
     margin-right: 10px;
 }

 .erupaiya-menu-column {
     flex: 0 0 55%;
     display: flex;
     justify-content: center;
 }

 .erupaiya-nav-menu {
     display: flex;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .erupaiya-nav-menu li {
     position: relative;
     margin: 0 12px;
 }

 .erupaiya-nav-menu a {
     color: #000000;
     text-decoration: none;
     font-weight: 600;
     font-size: 17px;
     padding: 8px 0;
     position: relative;
     transition: all 0.3s ease;
 }

 .erupaiya-nav-menu a:hover {
     color: #f2b35a;
 }

 .erupaiya-nav-menu a:hover::after {
     width: 100%;
 }

 .erupaiya-nav-menu a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: #0080ff;
     transition: width 0.3s ease;
 }

 .erupaiya-nav-menu .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     border-radius: 8px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
     padding: 10px 0;
     min-width: 200px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
     z-index: 100;
 }

 .erupaiya-nav-menu li:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .erupaiya-nav-menu .dropdown-menu li {
     margin: 0;
 }

 .erupaiya-nav-menu .dropdown-menu a {
     padding: 8px 20px;
     display: block;
     font-weight: 400;
 }

 .erupaiya-nav-menu .dropdown-menu a:hover {
     background: #f5f5f5;
 }

 .erupaiya-button-column {
     flex: 0 0 25%;
     display: flex;
     justify-content: flex-end;
     align-items: center;
 }

 .erupaiya-btn {
     padding: 9px 18px;
     border-radius: 50px;
     font-weight: 500;
     font-size: 14px;
     transition: all 0.3s ease;
     text-decoration: none;
     margin-left: 10px;
 }

 .erupaiya-btn-outline {
     border: 2px solid #0080ff;
     color: #0080ff;
     background: transparent;
 }

 .erupaiya-btn-outline:hover {
     background: #0080ff;
     color: white;
 }

 .erupaiya-btn-primary {
     background: #0080ff;
     color: white;
     border: 2px solid #0080ff;
 }

 .erupaiya-btn-primary:hover {
     background: #0066cc;
     border-color: #0066cc;
     color: white;
 }

 .erupaiya-mobile-toggle {
     display: none;
     background: none;
     border: none;
     color: #000;
     font-size: 24px;
     cursor: pointer;
 }

 @media (max-width: 991px) {
     .erupaiya-header-content {
         flex-wrap: wrap;
     }
     .erupaiya-logo-column {
         flex: 0 0 50%;
     }
     .erupaiya-button-column {
         flex: 0 0 50%;
     }
     .erupaiya-mobile-toggle {
         display: block;
         margin-left: auto;
     }
     .erupaiya-menu-column {
         flex: 0 0 100%;
         order: 3;
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.5s ease;
     }
     .erupaiya-menu-column.active {
         max-height: 500px;
         margin-top: 15px;
     }
     .erupaiya-nav-menu {
         flex-direction: column;
         width: 100%;
         padding: 10px 0;
     }
     .erupaiya-nav-menu li {
         margin: 5px 0;
     }
     .erupaiya-nav-menu .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         background: transparent;
         padding-left: 20px;
         display: none;
     }
     .erupaiya-nav-menu .dropdown.open .dropdown-menu {
         display: block;
     }
     .erupaiya-nav-menu .has-dropdown>a::after {
         margin-left: 5px;
         font-family: "Font Awesome 6 Free";
         content: "\f107";
         font-weight: 900;
     }
 }

 @media (max-width: 767px) {
     .erupaiya-button-column {
         display: none;
     }
     .erupaiya-logo-column {
         flex: 1;
     }
     .erupaiya-mobile-toggle {
         margin-left: 15px;
     }
     .erupaiya-mobile-buttons {
         display: flex;
         flex-direction: column;
         padding: 10px 0;
     }
     .erupaiya-mobile-buttons .erupaiya-btn {
         margin: 5px 0;
         text-align: center;
     }
     .erupaiya-menu-column.active .erupaiya-mobile-buttons {
         display: flex;
     }
     .erupaiya-mobile-buttons {
         display: none;
     }
 }