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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

/* Top Header Bar */
.top-header {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  z-index: 1000;
}

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

.top-links {
  display: flex;
  gap: 25px;
}

.top-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 12px;
}

.top-link:hover {
  color: #f4d03f;
}

.top-link i {
  margin-left: 5px;
  font-size: 10px;
}

.online-banking-btn {
  background: #f4d03f;
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s;
}

.online-banking-btn:hover {
  background: #f1c40f;
  transform: translateY(-1px);
}

/* Main Header */
.main-header {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 0;
  position: relative;
  z-index: 999;
}

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

.logo img {
  height: 70px;
  width: auto;
}

.main-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-navigation .nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  padding: 10px 0;
  position: relative;
}

.main-navigation .nav-menu li a:hover,
.main-navigation .nav-menu li a.active {
  color: #f4d03f;
}

.search-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s;
}

.search-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Hero Debit Card Section */
.hero-debit-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: white;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
}

.cash-back-text {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-style: italic;
  letter-spacing: 2px;
}

.hero-cta-btn {
  background: #f4d03f;
  color: #333;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-btn:hover {
  background: #f1c40f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Quick Actions Bar */
.quick-actions-bar {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  padding: 30px 0;
}

.actions-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.action-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.action-item:last-child {
  border-right: none;
}

.action-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.action-icon {
  font-size: 2.5rem;
  opacity: 0.9;
}

.action-text h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.action-arrow {
  color: #f4d03f;
  font-size: 14px;
  margin-left: 10px;
  transition: transform 0.3s;
}

.action-item:hover .action-arrow {
  transform: translateX(5px);
}

/* Open Account Section */
.open-account-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("/placeholder.svg?height=400&width=1200");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
  text-align: center;
}

.account-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(30, 74, 140, 0.8), rgba(44, 90, 160, 0.8));
}

.account-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.account-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-style: italic;
  letter-spacing: 2px;
}

.account-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.account-cta-btn {
  background: #f4d03f;
  color: #333;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.account-cta-btn:hover {
  background: #f1c40f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Loan Rates Section */
.loan-rates-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.rates-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: #4a90e2;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 2px;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.rate-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.rate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.rate-image {
  margin-bottom: 25px;
}

.circular-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.rate-card h3 {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.rate-display {
  margin-bottom: 15px;
}

.rate-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c5aa0;
}

.rate-percent {
  font-size: 2rem;
  font-weight: 700;
  color: #2c5aa0;
}

.rate-apr {
  font-size: 1.2rem;
  color: #2c5aa0;
  font-weight: 600;
}

.rate-disclaimer {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 25px;
  font-style: italic;
}

.rate-learn-more {
  color: #f4d03f;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.rate-learn-more:hover {
  color: #f1c40f;
}

.rate-learn-more i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.rate-learn-more:hover i {
  transform: translateX(5px);
}

.rates-disclaimer {
  text-align: center;
  margin-bottom: 40px;
}

.rates-disclaimer p {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.credit-score-section {
  text-align: center;
}

.credit-score-btn {
  background: #4a90e2;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

.credit-score-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* New Tradition Section */
.new-tradition-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("/placeholder.svg?height=500&width=1200");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
}

.tradition-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.tradition-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 0;
}

.tradition-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #4a90e2;
  font-style: italic;
  letter-spacing: 2px;
}

.tradition-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tradition-buttons {
  display: flex;
  gap: 20px;
}

.tradition-btn {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

.tradition-btn-primary {
  background: #2c5aa0;
  color: white;
}

.tradition-btn-secondary {
  background: #f4d03f;
  color: #333;
}

.tradition-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tradition-btn-primary:hover {
  background: #1e4a8c;
}

.tradition-btn-secondary:hover {
  background: #f1c40f;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 25px;
}

.feature-list li {
  padding: 5px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.feature-list li:before {
  content: "✓";
  color: #4a90e2;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-btn {
  background: #4a90e2;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.service-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quick Actions */
.quick-actions {
  padding: 80px 0;
  background: #f8f9fa;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.action-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.action-card .action-icon {
  font-size: 3rem;
  color: #4a90e2;
  margin-bottom: 20px;
}

.action-card h3 {
  font-size: 1.3rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.action-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.action-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.action-link:hover {
  color: #357abd;
}

.action-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.action-link:hover i {
  transform: translateX(5px);
}

/* Calculator Section */
.calculator-section {
  max-width: 600px;
  margin: 0 auto;
}

.calculator-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a90e2;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #4a90e2;
  color: white;
}

.btn-primary:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.calculation-result {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 5px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.result-label {
  font-weight: 600;
  color: #333;
}

.result-value {
  font-weight: 700;
  color: #4a90e2;
  font-size: 1.1rem;
}

/* About Page Styles */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #2c5aa0;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text h3 {
  font-size: 1.5rem;
  color: #2c5aa0;
  margin: 30px 0 15px 0;
  font-weight: 700;
}

.about-text p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 3rem;
  color: #4a90e2;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.4rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

.leadership-section {
  padding: 80px 0;
  background: #fff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.leader-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leader-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.leader-info {
  padding: 30px;
}

.leader-info h3 {
  font-size: 1.4rem;
  color: #2c5aa0;
  margin-bottom: 5px;
  font-weight: 700;
}

.leader-title {
  color: #4a90e2;
  font-weight: 600;
  margin-bottom: 15px;
}

.leader-info p {
  color: #666;
  line-height: 1.6;
}

.community-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.community-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-text h3 {
  font-size: 1.8rem;
  color: #2c5aa0;
  margin-bottom: 20px;
  font-weight: 700;
}

.community-text h4 {
  font-size: 1.3rem;
  color: #2c5aa0;
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.community-text p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.community-text ul {
  color: #666;
  padding-left: 20px;
  line-height: 1.7;
}

.community-text ul li {
  margin-bottom: 8px;
}

.community-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Personal Loans Page */
.loan-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.loan-info h2 {
  font-size: 2.2rem;
  color: #2c5aa0;
  margin-bottom: 20px;
  font-weight: 700;
}

.loan-info p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.loan-features h3,
.application-process h3 {
  font-size: 1.5rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.loan-features ul,
.application-process ol {
  color: #666;
  padding-left: 20px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.loan-features ul li,
.application-process ol li {
  margin-bottom: 8px;
}

.loan-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loan-uses-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.use-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.use-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.use-icon {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 20px;
}

.use-card h3 {
  font-size: 1.3rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.use-card p {
  color: #666;
  line-height: 1.6;
}

.application-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.application-content h2 {
  font-size: 2.2rem;
  color: #2c5aa0;
  margin-bottom: 20px;
  font-weight: 700;
}

.application-content p {
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.application-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.disclaimer {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer p {
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: #2c5aa0;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info p {
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  background: #4a90e2;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.3rem;
  color: #2c5aa0;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-details p {
  color: #666;
  margin-bottom: 5px;
  line-height: 1.5;
}

.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
}

.contact-form h2 {
  font-size: 2rem;
  color: #2c5aa0;
  margin-bottom: 30px;
  font-weight: 700;
}

.locations-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.location-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.location-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-info {
  padding: 30px;
}

.location-info h3 {
  font-size: 1.4rem;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.location-info p {
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-info i {
  color: #4a90e2;
  width: 16px;
}

.location-hours {
  margin: 20px 0;
}

.location-hours h4 {
  color: #2c5aa0;
  margin-bottom: 10px;
  font-weight: 600;
}

.location-hours p {
  color: #666;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.location-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-tag {
  background: #4a90e2;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, #2c5aa0, #4a90e2);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  flex: 2;
}

.footer-info {
  margin-bottom: 30px;
}

.footer-info p {
  margin-bottom: 5px;
  font-size: 14px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: #f4d03f;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.social-media {
  margin-bottom: 20px;
}

.social-link {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  color: white;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.3s;
}

.social-link:hover {
  background: #f4d03f;
  color: #333;
  transform: translateY(-2px);
}

.footer-badges {
  margin-bottom: 20px;
}

.footer-badge,
.app-badge {
  height: 40px;
  margin-left: 10px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-badge:hover,
.app-badge:hover {
  opacity: 1;
}

.accessibility-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.accessibility-link:hover {
  color: #f4d03f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-nav {
    flex-direction: column;
    gap: 15px;
  }

  .top-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .main-navigation .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    gap: 15px;
  }

  .main-navigation .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .cash-back-text {
    font-size: 2.5rem;
  }

  .account-title,
  .rates-title,
  .tradition-title {
    font-size: 2rem;
  }

  .actions-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .action-item {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .rates-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tradition-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-right {
    text-align: left;
  }

  .about-content,
  .loan-details,
  .contact-grid,
  .community-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-debit-section,
  .open-account-section,
  .new-tradition-section {
    padding: 60px 0;
  }

  .loan-rates-section,
  .content-section,
  .quick-actions {
    padding: 50px 0;
  }

  .actions-row {
    grid-template-columns: 1fr;
  }

  .rate-card,
  .service-item,
  .action-card {
    padding: 30px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}
