body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  margin-bottom: 4rem;
}

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

h1, h2, h3 {
  margin-bottom: 16px;
}

p {
  color: #555;
}

/* Hero */
.hero {
  padding: 80px 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
}

.hero p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  margin-right: 1rem;
  transition: background-color 0.3s ease;
}

.hero-buttons .btn.primary {
  background-color: #ff826b;
  color: white;
  border: none;
}

.hero-buttons .btn.primary:hover {
  background-color: #ff674d;
}

.hero-buttons .btn.outline {
  border: 2px solid #ff826b;
  color: #ff826b;
  background-color: transparent;
}

.hero-buttons .btn.outline:hover {
  background-color: #fff0ee;
}

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

@media (max-width: 767.98px) {
  .hero {
    padding: 60px 0;
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    margin: 0.5rem auto;
    width: 80%;
  }

  .hero-image {
    margin-top: 2rem;
  }
}


/* Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

/* 2. Style for MOBILE FIRST (Default, for screens < 768px) */
.card-grid > .card {
  /* On small screens, each item takes up the full width */
  flex: 0 1 100%;
}
.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.card h3 {
  text-align: center;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); 
}

.card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.card-img {
  width: 100px;
  height: auto;
  margin: 0 auto 16px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Steps */
.step-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

/* 2. Style for MOBILE FIRST (Default, for screens < 768px) */
.step-grid > .step {
  /* On small screens, each item takes up the full width */
  flex: 0 1 100%;
}
.step {
  text-align: center;
}

.step-number {
  background-color: #ff826b;
  color: white;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  margin: 0 auto 16px;
}

/* Button */
.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn.primary {
  background-color: #ff826b;
  color: white;
}

.mt-3 {
  margin-top: 30px;
}

.register-btn svg {
  margin-top: 1px; 
  transition: transform 0.2s ease;
}

.register-btn:hover svg {
  transform: translateX(4px);
}

.accordion-header {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.accordion-body{
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.accordion-body a {
    color: #ff826b !important;
}

.text-primary{
  color: #ff826b !important;
}

.title-sell-wid-us {
  width: calc(100% - 0.5rem); /* This makes the title 1rem wider than the container's content area on small screens */
  max-width: 1300px; /* This caps the width on large screens to be 50px wider than the container's 1200px */
  background-color: #ff826b; /* Use the brand color for the background */
  margin: 0 auto 2rem auto; /* Center the block and add some space below it */         
}

/* 3. Add a breakpoint for TABLETS (Bootstrap's 'md' breakpoint) */
@media (min-width: 576px) {
  .card-grid > .card,
  .step-grid > .step {
    /* On tablets and up, create a 2-column layout */
    flex-basis: calc(50% - 12px);
  }
}

/* 4. Add a breakpoint for DESKTOPS (Bootstrap's 'lg' breakpoint) */
@media (min-width: 992px) {
  .card-grid > .card,
  .step-grid > .step {
    /* On large desktops, use your original fixed width to allow for 3+ columns */
    flex-basis: 350px;
  }
}