/* Body styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}

/* Gradient background for the main container */
.gradient-bg {

    background: linear-gradient(135deg, #b988ed, #93b2e9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Navbar styling */
/* .navbar-brand .logo {
  width: 40px;
  height: auto;
} */

.logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}



.nav-link {
  color: #fff;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #63f3e7;
}

/* Navbar - Adjust for smaller screens */
@media (max-width: 768px) {
  .navbar-brand .logo {
    width: 120px;
  }

  .nav-link {
    font-size: 14px;
  }
}

.navbar-toggler {
  border-color: white; /* Optional: makes the button border white */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Hero section styling */
.hero-section {
  background: linear-gradient(135deg, #e98282, #2575fc);
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: textColorChange 3s infinite;
}

.hero-section p {
  font-size: 1.2rem;
}

.hero-section .credit-card-image {
  width: 400px;
  margin: 10px 0;
  animation: fadeIn 1.5s ease-in-out;
}

/* Adjustments for tablet and mobile */
@media (max-width: 768px) {
  .hero-content {
    padding: 10px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-section .credit-card-image {
    width: 300px;
  }

  .animate-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

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

  .hero-section p {
    font-size: 0.9rem;
  }

  .hero-section .credit-card-image {
    width: 250px;
  }

  .animate-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* Animations */
.animate-text {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button hover and animation */
.animate-btn {
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.animate-btn:hover {
  background-color: #63f3e7;
  color: #000000;
  transform: scale(1.05);
}

/* Credit Card Image styling */
.credit-card-image {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Heading animation */
@keyframes textColorChange {
  0%,
  100% {
    color: #ffffff;
  }
  50% {
    color: #63f3e7;
  }
}

/* General styles */
.country-flags-section {
  padding: 20px;
  background-color: #f9f9f9;
}

.country-flags-section h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.flags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  text-align: center;
}

.flag-item img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.flag-item img:hover {
  transform: scale(1.1);
}

.flag-item p {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
  .flags-container {
    gap: 10px;
  }

  .flag-item {
    width: 70px;
  }

  .flag-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .flag-item {
    width: 60px;
  }

  .flag-item p {
    font-size: 0.7rem;
  }
}

/* General styles */
.country-flags-section {
  padding: 20px;
    background: linear-gradient(135deg, #e98282, #2575fc);
  color: #fff;
}

.country-flags-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.flags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.flag-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.flag-item img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease;
}
.flag-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.flag-item p {
  margin-top: 8px;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
  .flags-container {
    gap: 10px;
  }

  .flag-item {
    width: 70px;
  }

  .flag-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .flag-item {
    width: 60px;
  }

  .flag-item p {
    font-size: 0.7rem;
  }
}
/* About Us Page  */
#contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Full page height */
  background-color: #f4f4f4; /* Light gray background for the section */
  padding-top: 50px;
}

/* About Us Section Styling */
.about-us-section {
  text-align: center;
  background-color: #ffffff;
  padding: 50px 0;
  color: #333;
}

.about-us-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
}

.about-us-section .section-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Full-width sections */
.about-item {
  width: 100%;
  padding: 60px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-item .about-content {
  text-align: center;
  max-width: 800px;
}

.about-icon {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.about-icon:hover {
  transform: scale(1.1);
}

/* Section backgrounds */
.our-services {
  background: linear-gradient(to right, #f3a683, #ff7979);
}

.why-choose {
  background: linear-gradient(to right, #7ed6df, #22a6b3);
}

.social-media {
  background: linear-gradient(to right, #f9ca24, #f6e58d);
}

/* Text Styling */
.about-item h3 {
  font-size: 1.8rem;
  margin-top: 20px;
  color: #fff;
}

.about-item p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f5f5f5;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-link {
  font-size: 2rem;
  color: #f5f5f5;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #333;
}

/* Contact Section */
#contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Full page height */
  background-color: #f4f4f4; /* Light gray background for the section */
  padding-top: 50px;
}

/* Contact Heading */
.contact-heading-container {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 20px 0;
  width: 100%;
  text-align: center;
}

.contact-heading {
  font-size: 40px;
  color: white;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

/* Contact Form Container */
.contact-form-container {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  max-width: 500px; /* Restrict the form's width */
  margin-top: 30px;
}

form .form-group {
  margin-bottom: 1.5rem;
}

form .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: border 0.3s ease;
}

form .form-control:focus {
  border-color: #2575fc;
  box-shadow: 0 0 5px rgba(37, 117, 252, 0.5);
}

form .btn {
  background-color: #2575fc;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  width: 100%;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

form .btn:hover {
  background-color: #6a11cb;
}

form .form-group label {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-heading {
    font-size: 30px;
  }

  .contact-form-container {
    padding: 20px;
  }
}

/* table */

/* Responsive Styles */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -15px;
  padding: 0 15px;
}

.table th, 
.table td {
  white-space: nowrap;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
  .table-responsive {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
  }
  
  .table {
    min-width: 100%;
    margin-bottom: 0;
  }
  
  .table th, 
  .table td {
    font-size: 12px;
    padding: 10px;
    white-space: normal;
    max-width: 150px;
  }
  
  /* Stack table rows for mobile */
  .table.table-mobile-stack tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
  }
  
  .table.table-mobile-stack th,
  .table.table-mobile-stack td {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #f1f1f1;
  }
  
  .table.table-mobile-stack th:last-child,
  .table.table-mobile-stack td:last-child {
    border-bottom: none;
  }
  
  .table.table-mobile-stack th {
    background-color: #f8f9fa;
    font-weight: 600;
  }

  .card-header {
    font-size: 16px;
    text-align: center;
    padding: 12px 15px;
  }

  .refresh-button {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .copy-icon {
    font-size: 14px;
    width: 22px;
    height: 22px;
    right: 8px;
  }
  
  .table td {
    padding-right: 35px !important;
  }
  
  .copy-notification {
    padding: 10px 16px;
    min-width: 180px;
    font-size: 14px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 576px) {
  .table th, 
  .table td {
    font-size: 11px;
    padding: 8px 10px;
  }
  
  .table.table-mobile-stack th,
  .table.table-mobile-stack td {
    padding: 10px 12px;
  }

  .refresh-button {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .copy-icon {
    font-size: 13px;
    width: 20px;
    height: 20px;
  }
  
  .table td {
    padding-right: 32px !important;
  }
  
  .copy-notification {
    font-size: 13px;
    padding: 8px 14px;
    min-width: 160px;
  }
}

/* Table Styling */
.card-header {
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #dee2e6;
  padding: 15px 20px;
}

.table {
  margin: 0;
  border-collapse: collapse;
  animation: fadeIn 1.5s;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02) inset;
  min-width: 500px;
}

.table th,
.table td {
  text-align: left;
  padding: 14px 16px;
  font-size: 14px;
  position: relative;
  vertical-align: middle;
}

.table th {
  background: linear-gradient(135deg, #f4f4f4 0%, #e9ecef 100%);
  font-weight: bold;
  color: #495057;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.table td {
  background-color: white;
  color: #555;
  transition: all 0.2s ease;
  padding-right: 40px !important;
}

/* Special styling for table cells with copy buttons */
.table td .cell-content {
  display: inline-block;
  vertical-align: middle;
}

/* Handle special case for image cells */
.table td img.card-logo {
  vertical-align: middle;
  display: inline-block;
  max-width: 60px;
  height: auto;
}

.table-hover tbody tr:hover {
  background-color: rgba(233, 236, 239, 0.6);
  transition: background-color 0.3s ease;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #e6e6e6;
}

/* Copy Button Styling */
.copy-btn {
  padding: 4px 10px !important;
  font-size: 12px !important;
  margin-left: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  float: right !important;
}

.copy-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15) !important;
}

.copy-btn:active {
  transform: translateY(1px) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.copy-btn i {
  margin-right: 4px !important;
}

/* Enhanced Copy Notification */
.copy-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  font-weight: 500;
  min-width: 200px;
  text-align: center;
  border-left: 4px solid #11cdef;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.copy-notification::before {
  content: '✓';
  margin-right: 8px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.3);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
}

.copy-label {
  font-weight: bold;
  text-decoration: underline;
  margin-right: 4px;
  opacity: 0.9;
}

.copy-notification.show {
  transform: translateY(0);
  opacity: 1;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  to {
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.4);
  }
}

/* Beautiful copy icon styles */
.copy-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  z-index: 5;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(240, 242, 245, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.copy-icon:hover {
  color: #2575fc;
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
  background-color: rgba(240, 242, 245, 0.9);
  box-shadow: 0 2px 6px rgba(37, 117, 252, 0.3);
}

.copy-icon:active {
  transform: translateY(-50%) scale(0.95);
}

.copy-success {
  color: #28a745 !important;
  opacity: 1;
  background-color: rgba(40, 167, 69, 0.1) !important;
  border-color: rgba(40, 167, 69, 0.2) !important;
}

/* Refresh Button */
.refresh-button {
  background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.refresh-button:hover {
  background: linear-gradient(135deg, #1a65e0 0%, #5a0eb4 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* Animation for table appearance */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Card Logo Styling */
.card-logo {
  width: 40px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Gap between Tables */
.card {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  border: none;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}


.table-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table th, .table td {
  padding: 10px 15px;
}


.card-icon {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}

.fake-sections {
  background: #000000;
  color: white;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.fake-sections .credit-card-image {
  width: 250px;
  margin: 10px 0;
  animation: fadeIn 1.5s ease-in-out;
}

/* Blog CSS */
.blog-section {
  background-color: #fff;
  padding: 60px 0;
}

.blog-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.card-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.blog-content-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.blog-content h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.blog-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-section h2 {
      font-size: 2rem;
  }

  .card-title {
      font-size: 1.25rem;
  }

  .card-text {
      font-size: 0.9rem;
  }

  .blog-content h3 {
      font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .blog-section h2 {
      font-size: 1.75rem;
  }

  .card {
      margin-bottom: 20px;
  }

  .blog-content h3 {
      font-size: 1.5rem;
  }
}

/* Privacy policy */

/* Privacy Policy Section */
.privacy-policy-section {
  background-color: #fff;
  padding: 60px 0;
}

.privacy-policy-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.privacy-policy-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.privacy-policy-section p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.privacy-policy-section ul {
  margin-bottom: 20px;
}

.privacy-policy-section ul li {
  margin-bottom: 10px;
}

.privacy-policy-section a {
  color: #007bff;
  text-decoration: none;
}

.privacy-policy-section a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-policy-section h1 {
      font-size: 2rem;
  }

  .privacy-policy-section h2 {
      font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .privacy-policy-section h1 {
      font-size: 1.75rem;
  }

  .privacy-policy-section h2 {
      font-size: 1.5rem;
  }
}

/* Terms Of Service */

/* Terms of Service Section */
.terms-of-service-section {
  background-color: #fff;
  padding: 60px 0;
}

.terms-of-service-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.terms-of-service-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.terms-of-service-section p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.terms-of-service-section ul {
  margin-bottom: 20px;
}

.terms-of-service-section ul li {
  margin-bottom: 10px;
}

.terms-of-service-section a {
  color: #007bff;
  text-decoration: none;
}

.terms-of-service-section a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-of-service-section h1 {
      font-size: 2rem;
  }

  .terms-of-service-section h2 {
      font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .terms-of-service-section h1 {
      font-size: 1.75rem;
  }

  .terms-of-service-section h2 {
      font-size: 1.5rem;
  }
}

/* * Terms & Conditions Section */ */
.terms-conditions-section {
    background-color: #fff;
    padding: 60px 0;
}

.terms-conditions-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.terms-conditions-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.terms-conditions-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-conditions-section ul {
    margin-bottom: 20px;
}

.terms-conditions-section ul li {
    margin-bottom: 10px;
}

.terms-conditions-section a {
    color: #007bff;
    text-decoration: none;
}

.terms-conditions-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-conditions-section h1 {
        font-size: 2rem;
    }

    .terms-conditions-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .terms-conditions-section h1 {
        font-size: 1.75rem;
    }

    .terms-conditions-section h2 {
        font-size: 1.5rem;
    }
}

/* Terms of Service Section */
.terms-of-service-section {
  background-color: #fff;
  padding: 60px 0;
}

.terms-of-service-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.terms-of-service-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.terms-of-service-section p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.terms-of-service-section ul {
  margin-bottom: 20px;
}

.terms-of-service-section ul li {
  margin-bottom: 10px;
}

.terms-of-service-section a {
  color: #007bff;
  text-decoration: none;
}

.terms-of-service-section a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-of-service-section h1 {
      font-size: 2rem;
  }

  .terms-of-service-section h2 {
      font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .terms-of-service-section h1 {
      font-size: 1.75rem;
  }

  .terms-of-service-section h2 {
      font-size: 1.5rem;
  }
}
