/* Contact Section Styling */
.anistonreachout-section {
  background-color: #222;
  color: #fff;
  width: 100%; /* Full width */
  box-sizing: border-box;
}
.anistonreachout-container {
  max-width: 1200px; /* Center the content */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  flex-wrap: wrap;
}
.anistonreachout-info {
  display: flex;
  flex-wrap: wrap; /* Ensure responsiveness */
  justify-content: space-evenly;
}
.anistonreachout-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 280px; /* Ensure proper spacing */
}
.anistonreachout-item i {
  font-size: 16px; /* Adjust icon size */

  color: #fff; /* Green for better visibility */
}
.anistonreachout-item div {
  text-align: left;
}
.anistonreachout-item p {
  margin: 5px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 100;
}
.anistonreachout-detail {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}
/* Responsive Design for Tablets */
@media (max-width: 1024px) {
  .anistonreachout-heading {
    font-size: 22px;
    text-align: left;
    margin-bottom: 15px;
  }
  .anistonreachout-info {
    flex-wrap: wrap;
    justify-content: center; /* Center items on tablets */
    gap: 15px;
  }
  .anistonreachout-item {
    justify-content: flex-start;
  }
  .anistonreachout-item i {
    font-size: 16px;
  }
  .anistonreachout-detail {
    font-size: 16px;
  }
}
/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
  .anistonreachout-info {
    /* display: grid; Use grid layout */
    grid-template-columns: repeat(2, 1fr); /* Two equal-width columns */
    gap: 10px; /* Adjust gap between items */
    align-items: center;
    justify-content: center;
  }
  .anistonreachout-item {
    text-align: center; /* Center align text and icons */
    gap: 10px;
    flex-direction: column;
  }
  .anistonreachout-item:nth-child(3) {
    grid-column: 1 / -1; /* Make the third item span across both columns */
    justify-self: center; /* Center the third item */
  }
  .anistonreachout-item i {
    font-size: 16px;
  }
  .anistonreachout-item div {
    text-align: center;
  }
  .anistonreachout-item p {
    font-size: 13px;
  }
  .anistonreachout-detail {
    font-size: 14px;
  }
}

