/* Reset & Base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8f9fb;
  color: #232b38;
  font-size: 16px;
  line-height: 1.7;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
.brand-header {
  background: #fff;
  border-bottom: 1px solid #e6e9ef;
  padding: 32px 0 18px 0;
  text-align: center;
}

.brand-logo {
  width: 88px;
  height: auto;
  margin-bottom: 12px;
}

.brand-title {
  margin: 0 0 8px 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #232b38;
}

.brand-subtitle {
  margin: 0;
  color: #6a7686;
  font-size: 1.1rem;
}

/* Highlights */
.highlights-section {
  background: #f3f5f8;
  padding: 18px 0;
  border-bottom: 1px solid #e6e9ef;
}

.highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.highlights-list li {
  background: #fff;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 600;
  color: #2e7df6;
  box-shadow: 0 2px 8px rgba(44, 59, 82, 0.04);
}

/* Section Titles */
section h2 {
  font-size: 1.5rem;
  color: #232b38;
  margin: 32px 0 16px 0;
  font-weight: 700;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 59, 82, 0.04);
  margin-bottom: 20px;
  overflow: hidden;
}

th, td {
  padding: 14px 16px;
  border-bottom: 1px solid #e6e9ef;
  text-align: left;
}

th {
  background: #f3f5f8;
  color: #2e7df6;
  font-weight: 700;
}

tr:last-child td {
  border-bottom: none;
}

.note {
  color: #6a7686;
  font-size: 0.95em;
}

/* Pros & Cons */
.pros-cons-wrapper {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pros, .cons {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 59, 82, 0.04);
  padding: 18px 20px;
}

.pros h3, .cons h3 {
  margin-top: 0;
  font-size: 1.15rem;
  color: #2e7df6;
}

.pros ul, .cons ul {
  padding-left: 22px;
  margin: 0;
}

.pros li::before {
  content: "✔";
  color: #31b66a;
  margin-right: 7px;
  font-weight: bold;
}

.cons li::before {
  content: "✖";
  color: #e85757;
  margin-right: 7px;
  font-weight: bold;
}

/* Section Cards */
section {
  margin-bottom: 32px;
}

/* Privacy Note */
.privacy-note, .plans-note {
  background: #f3f5f8;
  border-left: 4px solid #2e7df6;
  padding: 10px 18px;
  margin: 18px 0;
  color: #6a7686;
  border-radius: 4px;
  font-size: 0.98em;
}

/* Footer */
.brand-footer {
  background: #232b38;
  color: #fff;
  padding: 24px 0;
  text-align: center;
  font-size: 1em;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 700px) {
  .container {
    padding: 0 8px;
  }
  .pros-cons-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .highlights-list {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    padding: 18px 40px;
    background: #f5f7fa;
    border-bottom: 1px solid #e6e8ed;
    font-size: 1rem;
}

.navbar-logo {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: #222;
    margin-right: 40px;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    flex: 1;
}

.navbar-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-menu a:hover {
    color: #4c5eff;
}

.navbar-search {
    margin-left: auto;
    font-size: 1.3rem;
    color: #888;
    cursor: pointer;
}