:root {
  --rabo-blue:    #004699;
  --rabo-orange:  #FF6600;
  --gray-100:     #f8f9fa;
  --gray-800:     #343a40;
  --white:        #ffffff;
  --black:        #111111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--gray-100);
  color: var(--black);
  line-height: 1.6;
}

/* Dark mode */
body.dark {
  background: var(--gray-800);
  color: var(--white);
}

body.dark .hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1556740714-a8395b3a74dd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
}

body.dark .card {
  background: #2d3748;
  color: white;
  border-color: #4a5568;
}

.current {
   color: var(--rabo-orange) !important;
}

body.dark .btn-primary {
  background: var(--rabo-orange);
  color: white;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1000;
  background: rgba(0,70,153,0.95);
  backdrop-filter: blur(10px);
  color: white;
  transition: all 0.3s;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  max-width: 1400px;
  margin: 0 0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  gap: 38%;
}

.logo {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0.5;
  color: rgb(207, 207, 255);
}

.firstimg {
  margin-bottom: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--rabo-orange);
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url(images/hero.jpg) center/cover no-repeat fixed;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1rem 1rem 1rem;

}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  margin-top: 15px;
}

.hero p {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--rabo-orange);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #e65c00;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,102,0,0.3);
  color: var(--rabo-blue);
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: white;
  color: var(--rabo-blue);
}

.customers-assets {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-direction: row;
}

.customers-assets p {
  font-size: 15px;
  color: rgb(220, 219, 219);
}


/* Features / Cards */
.features {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--rabo-blue);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #eee;
  opacity: 0;
  transform: translateY(40px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 2rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--rabo-blue);
}

.slide-from-top, .slide-from-bottom, .slide-up-from-bottom, .fade-in {
  opacity: 0;
  transition: all 0.9s ease-out;
}

.slide-from-top.visible { opacity: 1; transform: translateY(0); }
.slide-from-bottom.visible { opacity: 1; transform: translateY(0); }
.slide-up-from-bottom.visible { opacity: 1; transform: translateY(0); }
.fade-in.visible { opacity: 1; }

.slide-from-top { transform: translateY(-60px); }
.slide-from-bottom { transform: translateY(60px); }
.slide-up-from-bottom { transform: translateY(80px); }

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* add mobile menu later if needed */
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}


/* ticker */
/* Ticker Section - Scrolling currency rates */
.ticker-section {
  background: var(--rabo-blue);
  color: white;
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-wrapper {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.ticker {
  display: inline-flex;
  gap: 4rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.ticker span {
  display: inline-block;
  padding: 0 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Countries Section */
.countries-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}

.country-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(80px);
}

.country-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.country-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.country-card p {
  padding: 1rem;
  font-weight: 600;
  color: var(--rabo-blue);
}

body.dark .country-card {
  background: #2d3748;
  color: white;
}

body.dark .country-card p {
  color: white;
}

.upgo:hover {
   transform: translateY(-10px);
   box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
   transition: transform 0.4s;
}

/* Login Section */
.login-section {
  padding: 8rem 2rem 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}

body.dark .login-section {
  background: var(--gray-800);
}

.login-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.login-card.visible {
  opacity: 1;
  transform: translateY(0);
}

body.dark .login-card {
  background: #2d3748;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.form-logo {
  margin-bottom: 2rem;
}

.login-card h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--rabo-blue);
}

body.dark .login-card h2 {
  color: white;
}

.login-card p {
  color: #666;
  margin-bottom: 2rem;
}

body.dark .login-card p {
  color: #ccc;
}

/* Form styling */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #444;
}

body.dark .form-group label {
  color: #ddd;
}

.form-group input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

body.dark .form-group input {
  background: #1a202c;
  border-color: #4a5568;
  color: white;
}

.form-group input:focus {
  outline: none;
  border-color: var(--rabo-blue);
  box-shadow: 0 0 0 3px rgba(0,70,153,0.15);
}

/* Password field with eye icon */
.password-group {
  position: relative;
}

.password-wrapper {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.3rem;
  color: #666;
}

body.dark .eye-icon {
  color: #aaa;
}

/* Form links */
.form-links {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.form-links a {
  color: var(--rabo-blue);
  text-decoration: none;
  margin: 0 1rem;
}

.form-links a:hover {
  text-decoration: underline;
}

body.dark .form-links a {
  color: #60a5fa;
}

/* Footer - Enhanced */
.footer {
  background: var(--rabo-blue);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.footer-newsletter h4,
.footer-links h4,
.footer-social h4 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: white;
}

.footer-newsletter p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.subscription-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.subscription-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
}

.subscription-form button {
  border-radius: 0 50px 50px 0;
  padding: 0.9rem 1.8rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--rabo-orange);
}

.footer-social .social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-social a {
  color: white;
  font-size: 1.6rem;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: var(--rabo-orange);
  transform: translateY(-3px);
}

/* Bottom copyright bar */
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .customers-assets {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  flex-direction: row;
}

.nav-container {
  display: flex !important;
  justify-content: space-between !important;
  gap: 16rem;
}

.logo {
  display: none;
}

.customers-assets p {
  font-size: 15px;
  color: rgb(220, 219, 219);
}

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .subscription-form {
    flex-direction: column;
  }

  header {
    height: 70px !important;
  }

  .subscription-form input {
    border-radius: 50px;
  }

  .subscription-form button {
    border-radius: 50px;
  }

  .social-icons {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .nav-container {
    gap: 28rem !important;
  }
}

/* Modal / Popup */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease-out;
}

.modal-content.visible {
  opacity: 1;
  transform: translateY(0);
}

body.dark .modal-content {
  background: #2d3748;
  color: white;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

body.dark .close-modal {
  color: #aaa;
}

.modal-logo {
  margin-bottom: 1.5rem;
}

.modal h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--rabo-blue);
}

body.dark .modal h3 {
  color: white;
}

.modal p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Form adjustments (for consistency) */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #444;
}

body.dark .form-group label {
  color: #ddd;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

body.dark .form-group input,
body.dark .form-group select {
  background: #1a202c;
  border-color: #4a5568;
  color: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rabo-blue);
  box-shadow: 0 0 0 3px rgba(0,70,153,0.15);
}

.form-links {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.form-links a {
  color: var(--rabo-blue);
  text-decoration: none;
  margin: 0 1rem;
}

.form-links a:hover {
  text-decoration: underline;
}

body.dark .form-links a {
  color: #60a5fa;
}



/* ==================== RESPONSIVE ==================== */
/* Hamburger Menu */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  position: relative;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--rabo-orange);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
  background: var(--rabo-blue);
}

.mobile-nav-links li {
  padding: 1rem 5%;
  border-bottom: 1px solid #eee;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--gray-100);
}

.mobile-nav-links a:hover {
  color: var(--rabo-orange);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==================== NEW SECTIONS CSS (Only these) ==================== */

/* Testimonials */
.testimonials {
  padding: 6rem 2rem;
  background: #f0f4ff;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stars {
  color: var(--rabo-orange);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* Rates Section */
.rates-section {
  padding: 6rem 2rem;
  background: var(--gray-100);
}

.rates-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rates-badge {
  background: var(--rabo-blue);
  color: white;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rate-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.rate-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.rate-card h3 {
  font-size: 2.4rem;
  color: var(--rabo-blue);
  margin: 0.5rem 0;
}

.featured, .savings, .credit, .mortgage {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

.featured { background: var(--rabo-orange); color: white; }
.savings { background: #22c55e; color: white; }
.credit { background: var(--rabo-blue); color: white; }
.mortgage { background: #f59e0b; color: white; }

/* Contact Info Section */
.contact-info {
  padding: 5rem 2rem;
  background: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #f0f4ff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e0e7ff;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,70,153,0.1);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Promo Banner - Stacked & Clean */
.promo-banner {
  background: linear-gradient(135deg, var(--rabo-blue), #003366);
  color: white;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.promo-content {
  max-width: 600px;
  margin: 0 auto;
}

.promo-badge {
  background: var(--rabo-orange);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.promo-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.promo-benefits {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  display: inline-block;
}

.promo-benefits li {
  margin: 12px 0;
  font-size: 1.1rem;
}

.promo-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Desktop - Side by side */
@media (min-width: 900px) {
  .promo-banner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding: 6rem 5%;
  }
  
  .promo-content {
    margin: 0;
    text-align: left;
  }
  
  .promo-benefits {
    text-align: left;
  }
}

/* ==================== ABOUT PAGE FULL CSS ==================== */

:root {
  --rabo-blue:    #004699;
  --rabo-orange:  #FF6600;
  --gray-100:     #f8f9fa;
  --gray-200:     #e9ecef;
  --light-purple: #C084FC;
  --deep-blue:    #002b5e;
}

/* Body & General */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(to bottom, #f8f9fa, #f0f4ff);
  color: var(--black);
  line-height: 1.6;
}

/* About Hero */
.about-hero {
  background: linear-gradient(rgba(0,70,153,0.75), rgba(0,43,94,0.85)), 
              url('https://source.unsplash.com/random/1600x900/?modern-bank') center/cover no-repeat fixed;
  color: white;
  padding: 10rem 2rem 8rem;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* Story Section */
.story-section {
  padding: 6rem 2rem;
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Mission */
.mission-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
  text-align: center;
}

.mission-text {
  max-width: 900px;
  margin: 1.5rem auto;
  font-size: 1.2rem;
  color: #333;
}

/* Numbers */
.numbers-section {
  padding: 6rem 2rem;
  background: var(--rabo-blue);
  color: white;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.number-card {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.number-card:hover {
  transform: translateY(-10px);
}

.number-card h3 {
  font-size: 3rem;
  color: var(--rabo-orange);
}

/* Core Values */
.values-section {
  padding: 6rem 2rem;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #f8f9ff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e0e7ff;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,70,153,0.1);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero h1 {
    font-size: 2.6rem;
  }
}

.current  {
  color: var(--rabo-orange);
}