/* General Styles */
.about {
  background-color: #f0f0f0; /* Light background for contrast */
  padding: 10px 10px 50px 10px;
}

.about .section_container {
   max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Core Values Section */
.core-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 10px;
}

.core-value {
  max-width: 300px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.core-value:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.value-icon {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Practices Section */
.practices {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.practice {
  flex: 1;
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #f9f9f9;
  transition: transform 0.3s, box-shadow 0.3s;
}

.practice:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.practice-icon {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.practice h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.gallery_item {
  max-width: 512px;
  text-align: center;
}

.gallery_item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery_item img:hover {
  transform: scale(1.05);
}


