.anistoncategory1-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.anistoncategory1-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  gap: 20px;
}

.anistoncategory1-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anistoncategory1-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.anistoncategory1-content {
  flex: 1;
  text-align: left;
  max-width: 600px;

  padding: 20px;
}

.anistoncategory1-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 100;
}

.anistoncategory1-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 100;
  color: #555;
}

.anistoncategory1-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.anistoncategory1-button:hover {
  background-color: #fff;
  color: #4a4a4a;
  border: 1px solid #4a4a4a;
}

.anistoncategory1-button svg {
  margin-left: 8px;
  fill: currentColor;
}

@media screen and (max-width: 768px) {
  .anistoncategory1-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    /* Added padding for better spacing */
  }

  .anistoncategory1-content {
    text-align: center;
    padding: 20px;
    /* Added padding to increase spacing */
    margin: 10px 0;
    /* Added margin for better separation */
  }

  .anistoncategory1-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    /* Increased spacing below heading */
  }

  .anistoncategory1-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    /* Increased spacing for better readability */
  }

  .anistoncategory1-button {
    font-size: 1.2rem;
    padding: 12px 24px;
    margin-top: 15px;
    /* Added margin above button */
  }
}

@media screen and (max-width: 480px) {
  .anistoncategory1-content {
    padding: 25px;
    /* More spacing for small screens */
    margin: 15px 0;
  }

  .anistoncategory1-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .anistoncategory1-content p {
    font-size: 0.9rem;
    margin-bottom: 30px;
    /* More spacing for better flow */
  }

  .anistoncategory1-button {
    font-size: 1rem;
    padding: 12px 20px;
    margin-top: 20px;
  }
}
