/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Hero Section */
.hero-section {
  background-color: #3498db;
  color: white;
  padding: 50px;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5em;
  margin: 0;
}

.hero-section p {
  font-size: 1.2em;
  margin-top: 10px;
  font-weight: 400;
}


/* Content Section */
.content-section {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Centers the text horizontally */
}

/* Slide-in Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in {
  animation: slideIn 1s ease-out forwards;
  /* Applying the slide-in effect */
  opacity: 0;
  text-align: left;
  max-width: 100%;
  width: 50%;
  /* padding: 10px; */
}

/* Specific adjustments for h2 and p inside content-section */
.content-section h2,
.content-section p {
  max-width: 800px;
  /* To make sure the content doesn't stretch too wide */
  margin: 0 auto;
  /* Centers the content horizontally */
}

/* Optional styling for p */
.content-section p {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 900px;
  /* Adjust width for better readability */
  margin-top: 20px;
}

/* Image Container */
.image-container {
  text-align: center;
  margin-top: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

.image-container i {
  font-size: 1.5em;
  font-style: italic;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.service-list i {
  margin-right: 10px;
  font-size: 1.5em;
  color: #4CAF50;
}

/* Accordion Styles */
.accordion {
  background-color: #f1f1f1;
  color: #333;
  padding: 15px;
  font-size: 1.2em;
  border: none;
  max-width: 100%;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

.accordion:hover {
  background-color: #ddd;
}

.panel {
  display: none;
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-left: 2px solid #4CAF50;
}

.accordion.active+.panel {
  display: block;
}

/* Call-to-Action Section */
.cta-container {
  text-align: center;
  margin-top: 30px;

}

.cta-btn {
  background-color: #3498db;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #0088e8;
}

/* Zoomable Image */
.zoomable {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.zoomable:hover {
  transform: scale(1.05);
}