.another-package-section {
  padding: 60px 0;
  background-color: #fff;
}

.another-package-title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #030303;
  margin-bottom: 30px;
}

.another-package-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 42px;
}

.package-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  min-height: 56px;
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.package-btn span {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #030303;
}

.package-btn:hover {
  border-color: #e63822;
  color: #e63822;
}

.package-btn.active {
  border: 1px solid #e63822;
}

.package-btn.active span {
  color: #e63822;
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .another-package-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .another-package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .another-package-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .another-package-section {
    padding: 40px 15px;
  }
  .another-package-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
  }
  .another-package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .package-btn {
    padding: 12px 8px;
    min-height: 48px;
  }
  .package-btn span {
    font-size: 12px;
  }
}
