.tally-support-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background-color: #ffffff;
  flex-wrap: wrap;
  gap: 30px;
}

.tally-support-section h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #002e5b;
}

.tally-support-section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.tally-support-section > div:first-child {
  flex: 1 1 55%;
}

.tally-support-section .customization-image {
  flex: 1 1 40%;
  text-align: center;
}

.tally-support-section .customization-image img {
  max-width: 100%;
  height: auto;
  width: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .tally-support-section {
    flex-direction: column;
    text-align: center;
  }

  .tally-support-section > div:first-child,
  .tally-support-section .customization-image {
    flex: 1 1 100%;
  }
}
    .center {
  text-align: center;
  margin: 40px 0;
}

#contact button {
  padding: 12px 30px;
  font-size: 1em;
  background-color: #002e5b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 46, 91, 0.2);
}

#contact button:hover {
  background-color: #004488;
  transform: translateY(-2px);
}
