/* Base Font Size */
html {
  font-size: 16px;
}

/* ====================
   Heading Styles
=======================*/

h1 {
  font-size: 1.5rem; /* sm: 24px */
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 640px) {
  h1 {
    font-size: 1.75rem; /* md: 28px */
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 2rem; /* lg: 32px */
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 2.25rem; /* xl: 36px */
  }
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.375rem;
  }
}

/* ====================
   Paragraph & Text
=======================*/

p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}
@media (min-width: 640px) {
  p {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  p {
    font-size: 1.1rem;
  }
}

li, summary, address {
  font-size: 0.95rem;
}
@media (min-width: 640px) {
  li, summary, address {
    font-size: 1rem;
  }
}

/* ====================
   Link Styles
=======================*/

a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 640px) {
  a {
    font-size: 1rem;
  }
}
a:hover {
  color: #ffffff;
}

/* ====================
   Buttons
=======================*/

button {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  button {
    font-size: 1.125rem;
  }
}

/* ====================
   FAQ / Details Section
=======================*/

details summary {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
details p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  color: #374151;
}

/* ====================
   Card Hover
=======================*/

.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
