/* Reset and General styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col-md-6 {
  flex-basis: calc(50% - 15px);
  margin-bottom: 30px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Service section styles */
.service-section {
  padding: 80px 0;
  background-color: #f7f7f7;
  text-align: center;
}

.alt-section {
  background-color: #eaeaea;
}

.animated-heading {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
  animation: fade-in 1s ease-in-out both;
}

.animation p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.icon {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.animation:hover .icon {
  opacity: 1;
}

/* Define your animations here */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media query for smaller screens */
@media (max-width: 767px) {
  .animated-heading {
    font-size: 28px;
  }

  .col-md-6 {
    flex-basis: 100%;
  }
}
