/* ================= BASE ================= */

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #ffffff;
  color: #222;
}

/* ================= NEW CONTAINER SYSTEM ================= */

/* Use this ONLY if you still use .container somewhere */
.container {
  max-width: 1280px;   /* Matches Tailwind max-w-7xl */
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= UTILITIES ================= */

.center {
  text-align: center;
}

.section {
  padding: 80px 0;
}

.light {
  background: #f5f7fa;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* ================= HERO ================= */

.franchise-hero {
  background: linear-gradient(135deg,#0d5a87,#186e99);
  color: #fff;
  padding: 100px 0;
}

.hero-sub {
  font-size: 18px;
  margin: 20px 0 30px;
}

/* ================= BUTTONS ================= */

.btn-primary {
  background: #ff6b00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #e85d00;
}

.btn-secondary {
  background: #fff;
  color: #186e99;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #f3f4f6;
}

.large-btn {
  padding: 18px 36px;
  font-size: 18px;
}

/* ================= CARDS ================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= TABLE ================= */

.finance-table {
  width: 100%;
  border-collapse: collapse;
}

.finance-table th,
.finance-table td {
  padding: 15px;
  border: 1px solid #ddd;
}

.finance-table th {
  background: #186e99;
  color: #fff;
}

/* ================= TRUST SECTION ================= */

.trust-section {
  background: #0d5a87;
  color: #fff;
  padding: 80px 0;
}

.trust-highlight {
  font-weight: bold;
  margin-top: 20px;
}

/* ================= MOVEMENT ================= */

.movement-section {
  padding: 80px 0;
  background: #f5f7fa;
}

/* ================= APPLY ================= */

.apply-section {
  padding: 80px 0;
}

.funnel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  margin: 40px 0;
}

.step {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* ================= NAV CTA ================= */

.nav-cta {
  background: #1e3a8a;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #0f172a;
}

/* ================= FOOTER ================= */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #ffffff;
}

.footer .global-list li {
  font-size: 14px;
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

.section {
  padding: 50px 0;
}

.section-title {
  font-size: 24px;
}

.franchise-hero {
  padding: 70px 0;
}

.hero-sub {
  font-size: 16px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 20px;
  font-size: 14px;
}

}