/* --- GLOBAL STYLES & RESETS --- */
* {
  box-sizing: border-box;
  list-style-type: none;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

/* --- UTILITY & LAYOUT --- */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

main > section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.cta-button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

/* --- HEADER & NAVIGATION --- */

#theme-toggle-button {
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}


.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid #222;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  width: 60px;
}

.nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #007bff;
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 6rem 0;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.banner {
  text-align: center;
  padding: 1rem;
  border-color: white;
  border-radius: 6px;
  border-style: double;
}

.testimonial-layout {
  display: flex;
  flex-direction: row;
}

.testimonial-content {
  text-align: center;
}


.brand-logos {
  display: flex;
  width: 15rem;
  height: auto;
  padding-bottom: 1rem;
}

.faq-title {
  text-align: center;
}

.faq-layout {
  display: flex;
  justify-content: space-evenly;

}

/* --- THEME STYLES --- */
.light-mode {
  background-color: #ffffff;
  color: #000000;
}


.light-mode .nav-links a {
  color: #000000;
}


/* --- RESPONSIVE STYLES --- */

@media screen and (min-width: 360px;) {
.hero-layout {
  flex-direction: column;
  text-align: center;

}


/* --- FOOTER --- */
.site-footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid #222;
  color: #888;
}

