h1, h2, h3, h4, .button-toggle, .button-primary, .button-secondary {
  font-family: 'Nasalization', sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

h1, h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

h2, h3 {
  margin-bottom: 1rem;
  color: #333;
}

p {
  margin-bottom: 1rem;
  text-align: center;
}

/* Button Styles */
.button-primary,
.button-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.button-primary {
  background-color: #eee;
  color: #333;
}

.button-primary:hover {
  background-color: #5e3370;
  color: #eee;
}

.button-secondary {
  background-color: #eee;
  color: #333;
}

.button-secondary:hover {
  background-color: #5e3370;
  color: #eee;
}

/* Navigation */
.hero-buttons a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.button-toggle {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 0.5rem;
}

.button-toggle.active {
  background-color: #422052;
  color: #fff;
}

.button-toggle.inactive {
  background-color: #eee;
  color: #333;
  border: 1px solid #ccc;
}

.button-toggle:hover {
  transform: scale(1.03);
}

/* Sections */
.hero-section {
  background: linear-gradient(135deg, #422052, #68407a);
  color: #fff;
  padding: 4rem 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.25rem;
}

.services-section, .testimonials-section, .contact-form {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-cards, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card, .testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(66, 32, 82, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
}

.card h3 {
  color: #422052;
}

blockquote {
  font-style: italic;
  margin-bottom: 0.5rem;
}

cite {
  font-size: 0.9rem;
  color: #555;
  display: block;
  text-align: center;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
  width: 100%;
  max-width: 500px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button[type="submit"] {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  background-color: #422052;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

button[type="submit"]:hover {
  background-color: #351a44;
  transform: scale(1.03);
}

.form-status {
  margin-top: 1rem;
  font-style: italic;
  color: #422052;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #222;
  color: #eee;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}