body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
}
html {
  scroll-behavior: smooth;
} 
a:link {
  color: #fff;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #eee;
  text-decoration: underline;
}

a:active {
  color: #eee;
  text-decoration: underline;
} 
header {
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #000;
}

.logo {
  height: 100px;
}

.menu {
    display: flex;
    background-color: #171717;
    padding: 10px;
    border-radius: 20px;
    width: 500px;
    margin: 0 auto;
    justify-content: center;
}
 @media only screen and (max-width: 600px) {
.menu {
    display: flex;
    background-color: #171717;
    padding: 10px;
    border-radius: 20px;
    width: 350px;
    margin: 0 auto;
    justify-content: center;
}
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #a4a4a4 !important;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.menu-item:link {
  color: #a4a4a4 !important;
}

.menu-item:hover {
    background-color: #242424 !important;
    text-decoration: none;
    color: #fff;
}

.menu-item-active {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff !important;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    background-color: #242424;
}

.menu-item-active:hover {
  text-decoration: none;
}

.icon {
    margin-right: 8px;
}

.text {
    font-size: 16px;
}
 @media only screen and (max-width: 600px) {
.text {
  font-size: 12px;
}
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #aaa;
  max-width: 600px;
  text-align: center;
}

.heroimg {
  height: 150px;
}

#services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #171717;
  padding: 1.5rem;
  border-radius: 12px;
  color: #fff;
  transition: background-color 0.2s ease;
  text-align: center;
  height: 200px; /* consistent height for centering */
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #171717;
  padding: 1.5rem;
  border-radius: 12px;
  color: #fff;
  transition: background-color 0.2s ease;
  text-align: center;
  height: 250px; /* consistent height for centering */
}

.contact p {
  color: #7b7b7b;
  font-size: 14px;
}
.service-card img {
  height: auto;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
}

.service-card:hover {
  background-color: #242424;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.service-card p {
  color: #7b7b7b;
  font-size: 0.75rem;
}

.service-icon {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.servicelogo {
  min-height: 50px;
  align-content: center;
}
.paynow {
  background: #b800c4;
  padding: 10px;
  border-radius: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  border: 0 none;
  min-width: 100px;
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.clickable {
  cursor: pointer;
}

.disclaimer {
  font-size: 11px;
  color: #7b7b7b;
  max-width: 550px;
  text-align: center;
  margin: 0 auto;
  padding: 0 10px;
}

#terms {
  max-width: 900px;
  padding: 0 20px;
  color: #a4a4a4;
  margin: 0 auto;
}
footer {
  text-align: center;
  padding: 1.5rem;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #222;
  padding: 1rem 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: #eee;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p,
.faq-answer ul {
  margin: 0.5rem 0;
  color: #888;
}

.faq-answer ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}
