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

/* Top Header */
.top-header {
    color: white;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-links a {
    color: black;
    margin-left: 15px;
    text-decoration: none;
    font-size: 14px;
    transition: all;
}

.header-links a:hover  {
    color: red;
}


/* Hero Section */
.hero {
    height: 350px;
    position: relative;
}

div.loginMoverContainer {
  background: rgba(255, 255, 255, 0.4);
}

.hero-content {
    background: rgba(0, 60, 110, 0.55);
    color: white !important;
    padding: 30px;
    width: 350px;
    border-radius: 8px;
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.btn {
    display: inline-block;
    background: #e40006cc;;
    padding: 10px 18px;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.btnM {
 background: #cb2c30;
}

/* Featured Rates */
.featured {
    text-align: center;
    padding: 50px 20px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 280px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Member Benefits */
.benefits {
    background: #e7f2ff;
    text-align: center;
    padding: 50px 20px;
}

/* Numbers */
.numbers {
    padding: 50px 20px;
    text-align: center;
}

.number-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.number-box {
    background: white;
    width: 250px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Difference Section */
.difference {
    padding: 50px 20px;
    text-align: center;
}

.diff-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.diff-card {
    background: white;
    width: 260px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ===== JOIN SECTION ===== */
.join {
  background: linear-gradient(135deg, var(--secondary), #9d0208);
  color: #fff;
  text-align: center;
  padding: 20px;
}

.join p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}


/* ===== BRAND SYSTEM ===== */
:root {
  --primary: #003566;
  --secondary: #c1121f;
  --light: #f8fafc;
  --dark: #0b132b;
  --muted: #6b7280;
  --radius: 14px;
}

/* ===== ICON STYLING ===== */
.card i,
.diff-card i,
.number-box i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

/* ===== CARD POLISH ===== */
.card,
.diff-card,
.number-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .4s ease;
}

.card:hover,
.diff-card:hover,
.number-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

/* ===== SECTION BACKGROUNDS ===== */
.featured {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.benefits,
.join {
  background: linear-gradient(135deg, var(--primary), #001d3d);
  color: #fff;
}

.benefits p,
.join p {
  max-width: 650px;
  margin: 0 auto 25px;
}

/* ===== BUTTON UPGRADE ===== */
.btn {
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all .3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btnM {
  background: var(--secondary);
}

.btnM:hover {
  background: #9b0c18;
}


.reveal {
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
