.budget-main {
  padding: 60px 20px;
  background-color: #004643;
  color: white;
}

.budget-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.budget-image {
  width: 100%;
  max-width: 600px;
  border: 4px solid #f9bc60;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.budget-info {
  max-width: 400px;
  text-align: left;
}

.budget-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.budget-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.template-button {
  background-color: white;
  color: #003f3f;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
}

.template-button:hover {
  background-color: #f9bc60;
  color: black;
}
