/* General container styling */
.contact-us-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
}

/* Contact details section */
.contact-details {
  flex: 1;
}

.contact-details h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-intro {
  font-size: 1.2rem; /* Increased size for clarity */
  margin-bottom: 25px; /* Added more space between intro and phone number */
  color: #555;
}

/* Card styling */
.card-style {
  background-color: #f9f9f9; /* Light background color */
  padding: 20px; /* Padding inside the card */
  border: 1px solid #ddd; /* Light border */
  border-radius: 10px; /* Rounded corners for the card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
  margin-bottom: 20px !important; /* Ensure space between each card is applied */
  color: #333;
}

.email-address {
  color: #007BFF;
  margin-bottom: 40px; /* Increased spacing */
  font-size: 1.6rem; /* Matching phone number size */
  font-weight: bold;
}

.phone-number {
  font-size: 1.6rem; /* Larger font for the phone number */
  color: #d69515;
  font-weight: bold;
  margin-bottom: 10px; /* Added space below the phone number */
}

.phone-number i {
  margin-right: 10px;
}

.whatsapp-number {
  margin-bottom: 30px; /* More space between WhatsApp and divider */
}

.whatsapp-number a {
  color: #25D366;
  font-size: 1.4rem; /* Adjusted font size for balance */
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid #25D366;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.whatsapp-number a:hover {
  background-color: #25D366;
  color: white;
}

.whatsapp-number i {
  margin-right: 10px;
}

/* Horizontal Divider */
.contact-divider {
  margin: 30px 0;
  border: 0;
  border-top: 2px solid #ddd;
}

/* Contact image */
.contact-image {
  flex: 1;
  text-align: right;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-us-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .contact-image {
    margin-top: 20px;
    text-align: center;
  }
}


/* Questions Section styling */
/* Questions Section styling */
.questions-section {
  margin-top: 60px; /* Adds space between the questions section and the content above */
}

.questions-title h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-size: 2rem;
}

.accordion-button {
  background-color: #f9f9f9; /* Matches the card style */
  font-size: 1.2rem;
  color: #333;
}

.accordion-button:not(.collapsed) {
  background-color: #d69515; /* Color change for active questions */
  color: white;
}

.accordion-body {
  font-size: 1rem;
  color: #555;
}

/* Extra space at the end of the last question */
.accordion-item:last-child {
  margin-bottom: 40px; /* Adds more space after the last question */
}
