:root {
  --primary-blue: #252a6b;
  --primary-black: #231f20;
  --blue-light:#676ECB;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a{
  text-decoration: none;
  color: inherit;
  transition: .3s;
}

.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-icon img {
  width: 100px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-item {
  position: relative;
  padding-right: 2rem;
  border-right: 1px solid #d1d5db;
}

.nav-item:last-child {
  border-right: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: var(--blue-light);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  background: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  border-left:5px solid var(--primary-blue);
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 200px;
  z-index: 1000;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  letter-spacing: 1px;
  transition: 0.3s ease;
  border-bottom: 1px solid var(--bg-gray);
  position: relative;
  z-index: 1;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:before{
  width: 0;
  height: calc(100% + 1px);
  background: var(--primary-blue);
  z-index: -1;
  position: absolute;
  content:'';
  transition: .4s;
  bottom:-1px;
  left:0;
}

.dropdown-item:hover {
  color: white;
}

.dropdown-item:hover:before{
  width: 100%;
}

.mobile-menu-btn {
  display: flex;
  background: var(--primary-blue);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 1;
}

.mobile-menu-btn:hover {
  background: #1e2356;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  box-shadow: -5px 0 25px rgba(37, 42, 107, 0.15);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 2rem 0;
  border-bottom: 2px solid var(--primary-blue);
  margin-bottom: 1rem;
  background: linear-gradient(90deg, rgba(37, 42, 107, 0.05) 0%, transparent 100%);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1rem;
  padding-top: 2rem;
}

.mobile-close-btn {
  background: var(--primary-blue);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close-btn:hover {
  background: #1e2356;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  flex: 1;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(37, 42, 107, 0.1);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mobile-nav-link:hover {
  background: rgba(37, 42, 107, 0.08);
  color: var(--primary-blue);
  padding-left: 1.5rem;
}

.mobile-chevron {
  transition: transform 0.3s ease;
}

.mobile-chevron.open {
  transform: rotate(180deg);
}

.mobile-dropdown {
  background: rgba(37, 42, 107, 0.05);
  padding: 0;
  border-left: 3px solid var(--primary-blue);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  margin-left: 1rem;
  border-radius: 0 8px 8px 0;
}

.mobile-dropdown.open {
  max-height: 300px;
  padding: 0.5rem 0;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 2rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.mobile-dropdown-item:hover {
  background: white;
  color: var(--primary-blue);
  padding-left: 2.5rem;
}

.mobile-contact-section {
  margin-top: auto;
  padding: 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid rgba(37, 42, 107, 0.15);
}

.mobile-contact-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.mobile-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0;
  background: transparent;
}

.mobile-contact-item:last-child {
  margin-bottom: 0;
}

.mobile-contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.mobile-contact-text {
  flex: 1;
}

.mobile-contact-text p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.mobile-contact-text a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.mobile-contact-text a:hover {
  color: var(--primary-blue);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/auto-hero1.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background: #1e2356;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--text-dark);
}

.submit-btn:active {
  transform: translateY(0);
}

.features {
  padding: 4rem 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.services {
  padding: 4rem 0;
  background: var(--primary-blue);
}

.services-container {
  background: var(--primary-blue);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services .section-header h2 {
  color: white;
}

.services .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.service-select-wrapper {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.service-select-label {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.custom-service-dropdown {
  position: relative;
  min-width: 280px;
}

.custom-dropdown-trigger {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-blue);
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.custom-dropdown-trigger:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-dropdown-trigger:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.dropdown-trigger-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dropdown-chevron.open {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.custom-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-item {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f1f5f9;
  color: #1f2937;
  font-weight: 500;
  background: white;
}

.custom-dropdown-item:last-child {
  border-bottom: none;
}

.custom-dropdown-item:hover {
  background: linear-gradient(90deg, rgba(37, 42, 107, 0.08) 0%, rgba(37, 42, 107, 0.03) 100%);
  color: var(--primary-blue);
  padding-left: 1.5rem;
}

.custom-dropdown-item.active {
  background: rgba(37, 42, 107, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

.dropdown-item-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.tab-content {
  min-height: 400px;
  background: rgba(255, 255, 255, 0.1);
}

.tab-panel {
  display: none;
  padding: 2rem;
}

.tab-panel.active {
  display: block;
}

.service-detail {
  max-width: 800px;
  margin: 0 auto;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0 0 1rem 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.service-header h3 {
  color: white;
  margin: 0;
}

.service-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0 0 0;
}

.service-icon-large {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary-blue);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.service-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.service-item h4 {
  color: white;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.service-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.about {
  padding: 4rem 0;
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  margin: 0;
}

.feature-item h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.feature-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.contact {
  padding: 4rem 0;
  background: #e2e8f0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: var(--primary-blue);
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.contact-info p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  backdrop-filter: blur(10px);
}

.contact-item div h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

.contact-item div p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.contact-item a:hover {
  color: white;
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.4rem 1rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 42, 107, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: var(--primary-blue);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: #1e2356;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 42, 107, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/*DMV FORMS BASE STYLES*/

.forms-intro {
  background: var(--bg-light);
  color: var(--text-dark);
}

.forms-intro .container {
  padding-block: 80px;
  padding-inline: max(1rem, calc((100% - 1100px) / 2));
  text-align: center;
}

.forms-intro p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* ===============================
   FORMS SECTION
=============================== */

.forms-section {
  background: white;
  padding-block: 80px;
}

.forms-category {
  margin-bottom: 4rem;
}

.forms-category h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 2px solid var(--bg-gray);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 1.5rem;
}

.form-card {
  background: var(--bg-light);
  border: 1px solid var(--bg-gray);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 42, 107, 0.2);
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.form-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

.form-number {
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
}

.form-description {
  flex: 1;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.form-download-btn:hover {
  background: #1e2356;
  transform: translateY(-2px);
}

.form-download-btn svg {
  stroke: currentColor;
}

/* ===============================
   HELP SECTION
=============================== */

.forms-help {
  background: var(--primary-blue);
  color: white;
  text-align: center;
  padding-block: 100px;
}

.forms-help .container {
  padding-inline: max(1rem, calc((100% - 1100px) / 2));
}

.help-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

.help-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.help-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.help-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/*FOOTER BASE STYLES*/

.footer {
  background: #0b0a0a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-section p,
.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

.footer-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #374151;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #9ca3af;
  text-align: left;
}

.footer-disclaimer strong {
  text-decoration: underline;
  font-weight: 600;
}

.subpage-hero {
  background: linear-gradient(rgba(37, 42, 107, 0.7), rgba(37, 42, 107, 0.7)), url("../images/auto-hero1.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.subpage-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subpage-content-section {
  padding: 4rem 0;
  background: white;
}

.subpage-content {
  max-width: 900px;
  margin: 0 auto;
}

.subpage-content h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.subpage-content h2:first-child {
  margin-top: 0;
}

.subpage-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.subpage-content ul,
.subpage-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}


.subpage-content li {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.subpage-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.subpage-content a {
  border-bottom: 1px solid var(--primary-blue);
  transition: 0.3s ease;
}

.subpage-content a:hover {
  color: var(--primary-blue);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }

  .footer-logo img {
    width: 120px;
  }

  .service-select-wrapper {
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.75rem;
  }

  .custom-service-dropdown {
    width: 100%;
    min-width: auto;
  }

  .subpage-hero {
    height: 200px;
  }

  .subpage-hero-content h1 {
    font-size: 2rem;
  }

  .subpage-content-section {
    padding: 3rem 0;
  }

  .subpage-content h2 {
    font-size: 1.5rem;
  }

  .subpage-content p,
  .subpage-content li {
    font-size: 1rem;
  }

  .subpage-content ul,
  .subpage-content ol {
    margin-left: 1.5rem;
  }

 /*DMV FORMS MOBILE STYLES*/
 
 .forms-intro .container,
  .forms-section .container,
  .forms-help .container {
    padding-block: 60px;
  }

  .forms-category h2 {
    font-size: 1.5rem;
  }

  .form-card {
    padding: 1.25rem;
  }

  .help-card {
    padding: 2rem;
  }

  .help-card h2 {
    font-size: 1.75rem;
  }

  .help-card p {
    font-size: 1rem;
  }

}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .forms-intro .container,
  .forms-section .container,
  .forms-help .container {
    padding-block: 40px;
  }

  .form-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .help-card {
    padding: 1.5rem;
  }

  .help-card h2 {
    font-size: 1.5rem;
  }
}
