/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

h1 {
  font-weight: 700;
  color: #ffffff; /* Changed to white */
}

h2, h3, h4 {
  font-weight: 700;
  color: #1e3a8a;
  text-align: center; 
}

a {
  text-decoration: none;
  color: #3b82f6;
}

/* Header */
.site-header { background:#ffffff; color:black; padding:15px 0; }
.site-header .logo { display:flex; align-items:center; gap:10px; font-weight:bold; font-size:1.4rem; }
.site-header .logo img { height:40px; }
.nav-menu ul { display:flex; gap:20px; list-style:none; }
.nav-menu a { color:black; font-weight:500; }

/* Hero */
.hero-search { background:linear-gradient(135deg, #1e3a8a, #3b82f6); color:white; text-align:center; padding:60px 20px; }
.hero-search h1 { font-size:2.8rem; margin-bottom:10px; }
.hero-search p { font-size:1.2rem; margin-bottom:30px; }
.search-tabs { display:flex; justify-content:center; gap:10px; margin-bottom:20px; }
.tab { background:transparent; border:1px solid white; color:white; padding:10px 20px; border-radius:8px; cursor:pointer; }
.tab.active { background:white; color:#1e3a8a; }
.search-form { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:30px; max-width:800px; margin-left:auto; margin-right:auto; }
.search-form input, .search-form select { padding:14px; border-radius:8px; border:none; flex:1; min-width:180px; }
.search-form button { background:#3b82f6; color:white; border:none; padding:14px 30px; border-radius:8px; font-weight:bold; cursor:pointer; }
.hidden { display:none; }
.ad-block { background:#e5e7eb; color:#6b7280; padding:20px; border-radius:8px; font-size:0.9rem; margin-top:30px; }

/* Grids */
.bank-grid, .links-grid, .features { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px, 1fr)); gap:20px; }
.bank-card, .link-card, .feature { background:white; padding:20px; border-radius:12px; text-align:center; box-shadow:0 2px 10px rgba(0,0,0,0.05); transition:0.3s; }
.bank-card:hover, .link-card:hover { transform:scale(1.03); }
.icon { font-size:2rem; color:#3b82f6; margin-bottom:10px; }

/* Footer */
.site-footer { background:#1e3a8a; color:white; padding:50px 0 20px; font-size:0.9rem; }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:30px; margin-bottom:30px; }
.footer-col h3, .footer-col h4 { color:white; margin-bottom:15px; }
.footer-col ul { list-style:none; }
.footer-col a { color:#93c5fd; }
.footer-bottom { text-align:center; border-top:1px solid #374151; padding-top:15px; color:#93c5fd; }

/* Responsive */
@media (max-width:768px) {
    .hero-search h1 { font-size:2rem; }
    .search-form { flex-direction:column; }
    .search-form input, .search-form select { min-width:100%; }
}