body {
    background-color: #f8f9fa;
  }

  .checkout-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 50px auto;
  }

  .checkout-container h2 {
    margin-bottom: 30px;
  }

  .form-label {
    font-weight: 500;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
  }
  footer {
    background-color: #2c3e50; /* أزرق داكن جميل */
    color: #fff; /* نص أبيض لسهولة القراءة */
    padding: 30px 0; /* إضافة حشو أعلى وأسفل الفوتر */
    text-align: center;
  }

  footer p {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #bdc3c7; /* لون رمادي فاتح للنصوص */
  }

  footer .social-icons {
    margin: 20px 0;
  }

  footer .social-icons a {
    margin: 0 15px;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  footer .social-icons a:hover {
    color: #f39c12; /* تأثير عند المرور على الأيقونات */
  }

  footer .quick-links {
    margin-top: 20px;
  }

  footer .quick-links a {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer .quick-links a:hover {
    color: #f39c12; /* تغيير اللون عند التفاعل */
  }

  footer .newsletter {
    margin-top: 30px;
  }

  footer .newsletter input[type="email"] {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    width: 300px;
  }

  footer .newsletter button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  footer .newsletter button:hover {
    background-color: #e67e22; /* تغيير اللون عند المرور على الزر */
  }
  /* Responsive Design */


/* For devices with width <= 768px (tablets and smaller devices) */
@media (max-width: 768px) {
/* Navbar: Stack the nav items vertically */
.navbar-nav {
text-align: center;
}

/* Make the navbar items larger and center them */
.navbar-nav .nav-link {
font-size: 1.1rem;
margin-right: 0;
}

/* Contact form and other sections: make form fields full-width */
.form-control, textarea, button[type="submit"] {
width: 100%;
}

/* Adjust social icons size */
.social-icons a {
font-size: 1.5rem;
}

/* Adjust container padding */
.container {
padding-left: 10px;
padding-right: 10px;
}

/* Footer: adjust font size */
footer p {
font-size: 0.9rem;
}

/* Fix the size of the subscribe button */
.footer .btn-subscribe {
width: auto;
font-size: 1rem; /* Ensure it doesn't grow too large */
padding: 10px 20px; /* Adjust padding to fit */
}
}

/* For devices with width <= 576px (phones and smaller devices) */
@media (max-width: 576px) {
/* Navbar: Adjust font size for mobile */
.navbar-nav .nav-link {
font-size: 1rem;
margin-right: 1rem;
}

/* Adjust button size for smaller devices */
button[type="submit"] {
width: 100%;
}

/* Make social icons a bit smaller */
.social-icons a {
font-size: 1.3rem;
}

/* Adjust footer font size */
footer p {
font-size: 0.85rem;
}

/* Fix the size of the subscribe button */
.footer .btn-subscribe {
width: auto;
font-size: 0.9rem;
padding: 8px 15px; /* Adjust padding */
}
}

