/* Sections shared with index.css */

.section {
  padding: 80px 20px;
  text-align: center;
}

.section-three {
  background-color: #e8f5e9;
  padding: 60px 0;
  min-height: 60vh;
}

.section-three-left,
.section-three-right {
  padding: 50px;
}

.section-three h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
  font-weight: 600;
  color: #A52A2A;
}

.section-three-left p,
.section-three-right p {
  font-size: 2.5rem;
  line-height: 1.7;
  color: #444;
  text-align: left;
  padding-left: 40px;
}

/* Section Four */
.section-four {
  background-color: #D2B48C;
  padding: 60px 20px;
}

.section-four-left h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0;
  text-align: center;
}

.section-four-right p {
  font-size: 1.5rem;
  color: #333;
  text-align: center;
}

.section-four-right a {
  color: #007bff;
  text-decoration: none;
}

.section-four-right a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .section-three-left p,
  .section-three-right p {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-left: 15px;
  }

  .section-four {
    padding: 30px 15px;
  }

  .section-four-left h1 {
    font-size: 2.0rem;
  }

  .section-four-right p {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .social-icons img {
    width: 40px;
    height: 40px;
  }
}
