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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #000;
  border-bottom: 2px solid #123b73;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

header h1 {
  color: white;
  font-size: 2rem;
}

#menu-btn {
  display: none;

  background: none;
  border: none;

  color: white;
  font-size: 2rem;

  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  font-weight: bold;
}

nav a:hover {
  color: #1d5fa7;
}

.logo {
  width: 75px;
  height: auto;
}

#hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url(images/hero.jpg);

  background-size: cover;
  background-position: center;
}

#hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.btn,
button {
  display: inline-block;
  padding: 15px 35px;

  background: #123b73;
  color: white;

  border: none;
  border-radius: 8px;

  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;

  transition: 0.3s;
}

.btn:hover,
button:hover {
  background: #1d5fa7;
  transform: translateY(-3px);
}

/* -------------------- */
/* PRICING PAGE */
/* -------------------- */

.page-hero {
  padding: 120px 20px 80px;
  text-align: center;

  background: linear-gradient(180deg, #000 0%, #0d0d0d 100%);
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 800px;
  margin: auto;

  color: #d0d0d0;
  line-height: 1.8;
}

/* -------------------- */
/* PRICING TABLE */
/* -------------------- */

#pricing {
  padding: 100px 0;
  background: #111;
}

#pricing h2 {
  text-align: center;
  margin-bottom: 50px;
}

table {
  width: 100%;
  border-collapse: collapse;

  background: #181818;
  border-radius: 10px;
  overflow: hidden;
}

th,
td {
  padding: 22px;

  text-align: center; /* Centers all text */
}

/* Vertical divider */

th:first-child,
td:first-child {
  border-right: 1px solid #3a3a3a;
}

thead {
  background: #123b73;
}

td {
  border-bottom: 1px solid #2a2a2a;
}

tbody tr:hover {
  background: #1f1f1f;
}

/* -------------------- */
/* SERVICE BREAKDOWN */
/* -------------------- */

.pricing-info {
  padding: 100px 0;
  background: #0b0b0b;
}

.pricing-info h2 {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.price-card {
  background: #181818;

  border: 1px solid #2b2b2b;
  border-top: 4px solid #123b73;

  border-radius: 10px;

  padding: 35px;

  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-8px);

  border-color: #1d5fa7;

  box-shadow: 0 15px 35px rgba(18, 59, 115, 0.25);
}

.price-card h3 {
  color: #1d5fa7;
  margin-bottom: 20px;
}

.price-card p {
  color: #d0d0d0;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
}

.price-card li {
  margin: 12px 0;
}

/* -------------------- */
/* INCLUDED SECTION */
/* -------------------- */

.included {
  padding: 100px 0;
  background: #111;
}

.included h2 {
  text-align: center;
  margin-bottom: 60px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.included-grid div {
  background: #181818;
  padding: 30px;

  border-radius: 10px;
  text-align: center;

  border: 1px solid #2a2a2a;

  transition: 0.3s;
}

.included-grid div:hover {
  border-color: #1d5fa7;
}

.included-grid h3 {
  color: #1d5fa7;
  margin-bottom: 15px;
}

/* -------------------- */
/* FAQ */
/* -------------------- */

.faq {
  padding: 100px 0;
  background: #0b0b0b;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-card {
  background: #181818;

  padding: 30px;

  margin-bottom: 25px;

  border-left: 4px solid #123b73;
  border-radius: 8px;
}

.faq-card h3 {
  margin-bottom: 15px;
}

.faq-card p {
  color: #d0d0d0;
}

/* -------------------- */
/* CTA */
/* -------------------- */

.call-to-action {
  padding: 100px 20px;

  text-align: center;

  background: linear-gradient(180deg, #111, #000);
}

.call-to-action h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.call-to-action p {
  max-width: 700px;
  margin: 0 auto 40px;

  color: #d0d0d0;
}

.call-to-action .btn {
  display: inline-block;

  padding: 16px 35px;

  background: #123b73;
  color: white;

  border-radius: 8px;

  text-decoration: none;
  font-weight: bold;

  transition: 0.3s;
}

.call-to-action .btn:hover {
  background: #1d5fa7;

  transform: translateY(-3px);
}

footer {
  background: black;
  text-align: center;

  padding: 30px;

  border-top: 2px solid #123b73;
}

@media (max-width: 768px) {
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  #hero h2 {
    font-size: 2.4rem;
  }

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

  .logo {
    width: 60px;
    flex-shrink: 0;
  }

  header h1 {
    font-size: 1.6rem;
    flex: 1;
    margin-left: 0 15px;
    line-height: 1.2;
  }

  #menu-btn {
    display: block;
    margin: 0;
    padding: 0;

    background: none;
    border: none;

    font-size: 2rem;
    color: white;

    flex-shrink: 0;
  }

  nav {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: #000;
    border-top: 2px solid #123b73;
  }

  nav.show {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px 0;
    gap: 20px;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  table {
    display: block;
    overflow-x: auto;
  }

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

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