/* --- Force Orange Button Background if Tailwind Fails --- */
button.bg-orange-600,
.bg-orange-600[type="submit"] {
  background-color: #ea580c !important;
  color: #fff !important;
}
button.bg-orange-600:hover,
.bg-orange-600[type="submit"]:hover,
button.hover\:bg-orange-700:hover {
  background-color: #c2410c !important;
}
/* --- Force Large Contact Button with High Specificity --- */
form button[type="submit"].w-full.bg-orange-600.h-14,
form .w-full.bg-orange-600.h-14[type="submit"] {
  font-size: 2rem !important;
  height: 4.5rem !important;
  padding: 1.2rem 0 !important;
  font-weight: 900 !important;
  border-radius: 16px !important;
  background-color: #ea580c !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(255,152,0,0.12) !important;
  letter-spacing: 0.03em !important;
  text-shadow: none !important;
}
/* --- Force Large Contact Button --- */
button.w-full.bg-orange-600.h-14,
.w-full.bg-orange-600.h-14[type="submit"] {
  font-size: 1.5rem !important;
  height: 4rem !important;
  padding: 1rem 0 !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
}
/* --- Enhanced Large Button Styles --- */
button.w-full, .w-full[type="submit"], .w-full.button {
  display: block;
  width: 100%;
  font-size: 1.25rem;
  height: 3.5rem;
  padding: 0.75rem 0;
  font-weight: 700;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  transition: background 0.2s;
}
button.w-full:hover, .w-full[type="submit"]:hover, .w-full.button:hover {
  background: #fb8c00;
}
h1, h2, h3, h4, h5, h6 {

/* --- Modern Clean CSS Design --- */

:root {
  --primary: #020d26;
  --accent: #ff9800;
  --background: #f4f6fb;
  --surface: #fff;
  --text: #222;
  --muted: #6b7280;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(30,35,126,0.08);
  --font-main: 'Segoe UI', 'Arial', sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

header, footer {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
}

nav {
  background: var(--surface);
  box-shadow: var(--shadow);
  border-bottom: 1px solid #e0e7ef;
  padding: 0.5rem 0;
}

nav .nav-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin: 0 1.2rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
nav .nav-link.active,
nav .nav-link:hover {
  background: var(--accent);
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-top: 0;
}

section, .container {
  max-width: 1100px;
  margin: 2rem auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.button, button, input[type="submit"] {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.button:hover, button:hover, input[type="submit"]:hover {
  background: #fb8c00;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial {
  background: #e3eafc;
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--muted);
}

footer {
  font-size: 1rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  section, .container {
    padding: 1rem;
  }
  nav .nav-link {
    margin: 0 0.5rem;
    padding: 0.5rem 0.5rem;
  }
}

@media (max-width: 600px) {
  section, .container {
    padding: 0.5rem;
  }
  nav {
    padding: 0.2rem 0;
  }
}
