:root {
  --primary-blue: #1e3c72;
  --secondary-blue: #2a5298;
  --primary-orange: #F59F00;
  --secondary-orange: #FFB01F;
  --light-orange: #ffd8b8;
  --dark-text: #333;
  --medium-text: #555;
  --light-text: #777;
  --light-bg: #fff;
  --white: #fff;
  --light-gray: #f0f0f0;
  --border-color: #e0e0e0;
  --repair-color: #4a89dc;
  --product-color: #ff8c42;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Vazir, sans-serif;
}

body {
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.8;
  position: relative;
}

/* هدر صفحه */
header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-orange);
}

header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* استایل هدر */
/* استایل لوگوی هدر */
.logo-container {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.header-logo {
  width: 100%;
  height: 100px;
  transition: transform 0.7s ease-in-out;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-logo:hover {
  transform: rotate(360deg) scale(1.1);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 0 rgba(255, 176, 31, 0.7));
  }
  70% {
    filter: drop-shadow(0 0 10px rgba(255, 176, 31, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 176, 31, 0));
  }
}

/* برای نمایش بهتر در موبایل */
@media (max-width: 768px) {
  .logo-container {
    top: 0.5rem;
    left: 0.5rem;
  }
  
  .header-logo {
    display: none;
    width: 60px;
    height: 60px;
  }
}


/* اسلایدر */
.slider-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  height: 400px;
  margin-top: -32px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 0;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 5rem;
  color: var(--white);
}

.slide-text {
  flex: 1;
  padding: 2rem;
  text-align: center;
}

.slide-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* بخش‌های اصلی */
section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#repair-services {
  background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
  border-top: 4px solid var(--repair-color);
}

#product-order {
  background: linear-gradient(135deg, #fff9f5 0%, #ffefe6 100%);
  border-top: 4px solid var(--primary-orange);
}

h2 {
  color: var(--secondary-blue);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 3px;
}

h3 {
  color: var(--secondary-blue);
  margin: 1.5rem 0 1rem;
  font-size: 1.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

p {
  color: var(--medium-text);
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: center;
}

p2 {
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: center;
}

/* مراحل خدمات */
.service-steps,
.order-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.step {
  flex: 1;
  min-width: 250px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--light-gray);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* دکمه‌ها */
.button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  margin: 1rem auto;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.repair-button {
  background: linear-gradient(135deg, var(--repair-color) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  display: block;
  margin: 2rem auto;
  max-width: 300px;
}

.order-button {
  background: linear-gradient(135deg, var(--product-color) 0%, #ff6b00 100%);
  color: var(--white);
  display: block;
  margin: 2rem auto;
  max-width: 300px;
}

.learn-button,
.payment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  margin: 1rem auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.learn-button:hover,
.payment-button:hover {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.learn-btn-container,
.payment-btn-container {
  text-align: center;
  margin: 1.5rem 0;
}

/* انیمیشن ویژه دکمه ها */
@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}
.learn-button,
.repair-button,
.order-button,
.payment-button {
 animation: pulse-orange 2s infinite ;

}



/* لیست مزایا */
.service-benefits, 
.order-benefits {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  text-align: right;
  direction: rtl;
  border: 1px solid var(--light-gray);
}

.service-benefits {
  border-top: 4px solid var(--repair-color);
}

.order-benefits {
  border-top: 4px solid var(--primary-orange);
}

.service-benefits ul,
.order-benefits ul {
  list-style: none;
  padding-right: 1rem;
}

.service-benefits li,
.order-benefits li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-right: 1.5rem;
  color: var(--medium-text);
  line-height: 1.8;
}

.service-benefits li:before,
.order-benefits li:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.service-benefits li:before {
  background: var(--repair-color);
}

.order-benefits li:before {
  background: var(--primary-orange);
}

/* پیگیری تعمیرات */
#tracking {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--light-gray);
  max-width: 500px;
}

#tracking input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  margin: 0.5rem 0;
  font-family: Vazir, sans-serif;
  text-align: center;
  transition: border 0.3s;
}

#tracking input:focus {
  border-color: var(--primary-orange);
  outline: none;
}

#tracking button {
  background: linear-gradient(135deg, var(--repair-color) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: Vazir, sans-serif;
  transition: all 0.3s;
  margin: 1rem auto;
  display: block;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#tracking button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* استایل بخش پیگیری سفارش کالا */
#order-tracking {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--light-gray);
  max-width: 500px;
  text-align: center;
}

#order-tracking input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  margin: 0.5rem 0;
  font-family: Vazir, sans-serif;
  text-align: center;
  transition: border 0.3s;
}

#order-tracking input:focus {
  border-color: var(--primary-orange);
  outline: none;
}

#order-tracking button {
  background: linear-gradient(135deg, var(--product-color) 0%, #ff6b00 100%);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: Vazir, sans-serif;
  transition: all 0.3s;
  margin: 1rem auto;
  display: block;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#order-tracking button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#repairStatus,
#repairDescription,
#repairCost {
  margin: 0.5rem 0;
  color: var(--medium-text);
  text-align: center;
}



/* استایل فوتر */
.site-footer {
  background: linear-gradient(135deg, #1a2a4a 0%, #1e3c72 100%);
  color: #fff;
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F59F00, #FFB01F);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section {
  padding: 1rem;
  position: relative;
}

.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1rem;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-section:last-child::after {
  display: none;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.7rem;
  position: relative;
  color: #FFB01F;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #F59F00, #FFB01F);
}

/* استایل بخش تماس */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-item i {
  color: #FFB01F;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #FFB01F;
  transform: translateY(-3px);
}

/* استایل لینک های سریع */
.quick-links ul {
  list-style: none;
}

.quick-links li {
  margin-bottom: 0.8rem;
}

.quick-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  padding: 0.3rem 0;
  position: relative;
}

.quick-links a::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #FFB01F;
  transition: width 0.3s;
}

.quick-links a:hover {
  color: #FFB01F;
  padding-right: 10px;
}

.quick-links a:hover::before {
  width: 8px;
}

/* استایل ساعات کاری */
.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.hours-item span:first-child {
  color: #ddd;
}

.hours-item span:last-child {
  font-weight: bold;
}

.emergency-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.8rem;
  background: rgba(255, 176, 31, 0.1);
  border-radius: 5px;
  color: #FFB01F;
}

.emergency-contact i {
  font-size: 1.2rem;
}

/* استایل خبرنامه */
.newsletter p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #ddd;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.newsletter-form input {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: Vazir, sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: 1px solid #FFB01F;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, #F59F00, #FFB01F);
  color: #1a2a4a;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Vazir, sans-serif;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 159, 0, 0.3);
}

.footer-logo {
  max-width: 150px;
  margin-top: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-logo:hover {
  opacity: 1;
  transform: rotate(5deg) scale(1.05);
}

/* استایل کپی رایت */
.copyright {
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.copyright p:first-child {
  margin-bottom: 0.5rem;
}

/* رسپانسیو */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-section::after {
    display: none;
  }
  
  .footer-section.newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-section.newsletter {
    grid-column: span 1;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
}

/* منوی همبرگری */
.hamburger-menu {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

#menu-toggle {
  opacity: 0;
  position: absolute;
}

#menu-toggle:checked ~ .menu-btn > span {
  transform: rotate(45deg);
}
#menu-toggle:checked ~ .menu-btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu-toggle:checked ~ .menu-btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu-toggle:checked ~ .menu-box {
  visibility: visible;
  right: 0;
}

.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1000;
}

.menu-btn > span,
.menu-btn > span::before,
.menu-btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
  transition-duration: .25s;
}
.menu-btn > span::before {
  content: '';
  top: -8px;
}
.menu-btn > span::after {
  content: '';
  top: 8px;
}

.menu-box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  box-shadow: -1px 0px 6px rgba(0, 0, 0, .2);
  transition-duration: .25s;
  z-index: 999;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 15px 25px;
  margin: 5px 10px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border-right: 3px solid transparent;
  border-radius: 5px;
}

.menu-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(-5px);
  border-right-color: var(--primary-orange);
  color: var(--light-orange);
}

/* آیکون‌های منو */
.menu-item[href="/"]::before {
  content: '\f015';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.menu-item[href="/services/"]::before {
  content: '\f0ad';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.menu-item[href="/learn/"]::before {
  content: '\f19d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.menu-item[href="/payment/"]::before {
  content: '\f53d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.menu-item[href="/about/"]::before {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.menu-item[href="/contact/"]::before {
  content: '\f095';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

/* دکمه‌های شناور */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.floating-buttons.right {
  right: 2rem;
}

.floating-buttons.left {
  left: 2rem;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  font-size: 1rem;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-btn i {
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
}

.btn-text {
  font-weight: bold;
  font-size: 0.95rem;
}



/* رسپانسیو */
@media (max-width: 768px) {
  .slider-container {
    height: 300px;
  }
  
  .slide-content {
    flex-direction: column;
    padding: 1rem;
  }
  
  .slide-text h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .slide-image img {
    max-height: 150px;
  }
  
  .service-steps,
  .order-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step {
    min-width: 100%;
  }
  
  header {
    padding: 2rem 1rem;
  }
  
  header h1 {
    font-size: 1.6rem;
  }
  
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-buttons.right {
  right: 2rem;
}

.floating-buttons.left {
  left: 2rem;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  font-size: 1rem;
  white-space: nowrap;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-btn i {
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
}

.btn-text {
  font-weight: bold;
  font-size: 0.95rem;
}

  .floating-buttons {
    bottom: 1rem;
    gap: 0.7rem;
  }

  .floating-buttons.right {
    right: 1rem;
  }

  .floating-buttons.left {
    left: 1rem;
  }

  .floating-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .floating-btn i {
    font-size: 1.1rem;
    padding: 0.4rem;
  }

  .btn-text {
    font-size: 0.85rem;
  }
  
  .menu-box {
    width: 250px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }
  
  header p {
    font-size: 1rem;
  }
  
  .slide-text {
    padding: 1rem;
  }
  
  .slide-text h1 {
    font-size: 1.2rem;
  }
  
  section {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .button,
  .learn-button,
  .payment-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

}
