/* Resetting default styles */
/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
} */

/* General container styling */
/* .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
} */

/* Section title */
.section-title h2 {
  /* font-size: 2.5rem; */
  text-align: center;
  color: #4267b2;
  margin-bottom: 20px;
  font-weight: bold;
}

/* About content styling */
.about-content {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.about-image img,
.logo-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Headings in content */
.about-content h3 {
  /* font-size: 1.8rem; */
  color: #4267b2;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Paragraphs in content */
.about-content p {
  /* font-size: 1.2rem; */
  margin-bottom: 15px;
}

/* List styling */
.about-content ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-bottom: 20px;
}

.about-content ul li {
  /* font-size: 1.2rem; */
  margin-bottom: 10px;
}

/* Logo section styling */
.logo-section {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

/* .logo-section img {
  width: 50%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

.logo-section p {
  flex: 1 1 60%;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Animation styles */
.wow {
  visibility: hidden;
}

.wow.fadeInUp {
  animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .logo-section {
    flex-direction: column;
    text-align: center;
  }

  .logo-section img {
    margin: 0 auto;
  }
}
