/* Base Styles */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

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

/* Header & Navigation */
header {
  background: #004578;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.logo img {
  max-height: 50px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: #f3f3f3;
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 1.5rem 0 0.5rem;
}

.hero p {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: #004578;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* Content Sections */
.features, .plans, .equipment, .how-it-works {
  padding: 2.5rem 1rem;
  background: #fff;
}

.features ul, .equipment ul {
  list-style: none;
  padding: 0;
}

.features li, .equipment li {
  margin-bottom: 0.75rem;
}

.plan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.plan-card {
  border: 1px solid #ccc;
  border-radius: 6px;
  flex: 1 1 30%;
  padding: 1rem;
  background: #fafafa;
  text-align: center;
}

.plan-card h3 {
  margin: 0.5rem 0;
}

.plan-card .speed {
  font-weight: bold;
  font-size: 1.2rem;
  color: #004578;
}

/* Footer */
footer {
  background: #eee;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {

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

  nav {
    background: rgba(0, 0, 0, 0.65);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
  }

  .plan-grid {
    flex-direction: column;
  }

  .hero h1 {
    margin: 2rem 0 1rem;
  }
}
