

/* Order Process Section */
.order-process {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

/* Title */
.order-process h2 {
    background-color: #2D1D74;
    color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Individual Step Box */
.step {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.step:hover {
    transform: translateY(-5px);
}

/* Step Title */
.step h3 {
    color: #2C1A4A;
    margin: 10px 0;
}

/* Step Description */
.step p{
    font-size: 14px;
    color: #333;
}

.step li{
  font-size: 14px;
  color: #333;
}

/* Material Icons Styling */
.step .material-icons-outlined {
    font-size: 40px;
    color: #2C1A4A;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Order Process Section */
    .order-process {
      padding: 20px 10px;
      width: 90%; /* Use a wider width for mobile */
      justify-content: center;
      align-items: center;
      margin: 0 auto; /* Center the container */
    }
  
    .order-process h2 {
      font-size: 18px;
      padding: 10px;
      text-align: center; /* Center the title */
    }
  
    /* Steps Container */
    .steps-container {
      flex-direction: column;
      gap: 15px; /* Reduced gap for mobile */
      align-items: center; /* Center the content */
      justify-content: center;
    }
  
    /* Individual Step Box */
    .step {
      padding: 15px;
      font-size: 13px;
      text-align: center; /* Center text */
      width: 100%; /* Ensure steps are full width */
    }
  
    .step h3 {
      font-size: 16px;
    }
    /* Material Icons */
    .step .material-icons-outlined {
      font-size: 32px; /* Slightly smaller icon */
    }
  
    /* Iframe Styling */
    iframe {
      padding: 15px;
      width: 90%;
      margin: 0 auto; /* Center the iframe */
      border-radius: 8px;
    }
  
    iframe .fb-pharmacy {
      background: white;
      padding: 15px;
      width: 90%; /* Ensure it's responsive */
      margin: 0 auto; /* Center the content */
      border-radius: 8px;
    }
  }
  