*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#fff;
  overflow-x:hidden;
}

/* CONTAINER */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid #eee;
}

/* NAVBAR */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  position:relative;
}

/* LOGO */
.logo{
  height:20px;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  margin-left:auto;
}

/* LINKS */
.nav-links a{
  text-decoration:none;
  color:#000;
  font-size:14px;
  font-weight:500;
  transition:0.3s ease;
}

.nav-links a:hover{
  color:#2d6cdf;
}

/* LOGIN BUTTON */
.login{
  background:#3434ff;
  color:#fff !important;
  padding:8px 18px;
  border-radius:6px;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

/* DROPDOWN MENU */
.dropdown-menu{
  position:absolute;
  top:120%;
  left:0;
  background:#fff;
  min-width:220px;
  border-radius:8px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  padding:10px 0;

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);

  transition:0.3s ease;
}

/* SHOW MENU */
.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu a{
  display:block;
  padding:12px 18px;
}

.dropdown-menu a:hover{
  background:#f4f4f4;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* HERO */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:60px 80px;
  background:#f3f3f3;
}

.hero-left{
  max-width:550px;
}

.hero-left h4{
  color:#2d6cdf;
  letter-spacing:2px;
  margin-bottom:12px;
}

.hero-left h1{
  font-size:64px;
  font-weight:800;
  margin-bottom:20px;
  color:#222;
}

.hero-left p{
  line-height:1.7;
  color:#444;
}

.hero-right img{
  width:260px;
}

/* TESTIMONIALS */
.testimonial-strip{
  position:relative;
  padding:60px 80px;
  background:#f7f7f7;
}

.diagonal-bg{
  position:absolute;
  left:0;
  top:0;
  width:35%;
  height:100%;
  background:repeating-linear-gradient(
    135deg,
    #ececec,
    #ececec 10px,
    #f7f7f7 10px,
    #f7f7f7 20px
  );
}

.testimonial-content{
  display:flex;
  gap:50px;
  align-items:center;
  position:relative;
  z-index:2;
}

.rating{
  min-width:180px;
}

.stars{
  color:#00b67a;
  font-size:20px;
}

.based{
  font-size:12px;
  color:#666;
  margin-top:5px;
}

.trustpilot{
  margin-top:10px;
  font-weight:bold;
}

/* REVIEWS */
.reviews{
  display:flex;
  gap:20px;
}

.review-card{
  width:220px;
  background:#fff;
  padding:20px;
  border-radius:8px;
  box-shadow:0 5px 14px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.review-card:hover{
  transform:translateY(-8px);
}

.review-card p{
  margin:12px 0;
  font-size:14px;
}

.review-card span{
  font-size:12px;
  color:#777;
}

.disclaimer{
  margin-top:30px;
  font-size:12px;
  color:#777;
  position:relative;
  z-index:2;
}

/* NEWS SECTION */
.news-section{
  padding:80px 0;
  background:#f7f7f7;
  text-align:center;
}

.news-section h2{
  margin-bottom:40px;
  font-size:28px;
}

.news-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}

/* SLIDER BUTTONS */
.slider-nav{
  background:none;
  border:none;
  font-size:32px;
  color:#2d6cdf;
  cursor:pointer;
}

/* CARDS */
.news-cards{
  display:flex;
  gap:30px;
}

.card{
  width:270px;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  text-align:left;
  box-shadow:0 5px 14px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.card:hover{
  transform:translateY(-8px);
}

.card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.card-body{
  padding:20px;
}

.card-body h3{
  font-size:15px;
  margin-bottom:12px;
  line-height:1.5;
}

.card-body p{
  font-size:13px;
  color:#666;
  line-height:1.6;
  margin-bottom:14px;
}

.card-body a{
  color:#2d6cdf;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
}

/* UPDATES */
.updates-section{
  padding:80px 0;
  background:#f3f3f3;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
  font-size:28px;
}

.updates-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}

.updates-cards{
  display:flex;
  gap:30px;
}

.update-card{
  width:270px;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 5px 14px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.update-card:hover{
  transform:translateY(-8px);
}

.card-image{
  height:170px;
  overflow:hidden;
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card-content{
  padding:20px;
}

.card-content h3{
  font-size:15px;
  margin-bottom:12px;
  line-height:1.5;
}

.card-content p{
  font-size:13px;
  color:#666;
  line-height:1.6;
  margin-bottom:14px;
}

.card-content a{
  color:#2d6cdf;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
}

/* BUTTON */
.view-all{
  margin-top:40px;
  text-align:center;
}

.view-all button{
  background:#2b2d42;
  color:#fff;
  border:none;
  padding:12px 28px;
  cursor:pointer;
  transition:0.3s ease;
}

.view-all button:hover{
  transform:translateY(-3px);
}

/* FOOTER */
.finance-footer{
  background:#2f3147;
  color:#fff;
  padding:60px 20px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
}

.footer-logo{
  margin-bottom:30px;
}

.footer-logo img{
  height:24px;
}

.footer-columns{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:40px;
}

.footer-col h4{
  font-size:12px;
  margin-bottom:15px;
  letter-spacing:1px;
}

.footer-col a{
  display:block;
  color:#d1d5db;
  text-decoration:none;
  margin-bottom:10px;
  font-size:13px;
}

.footer-col a:hover{
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){

  .nav{
    position:relative;
  }

  .menu-toggle{
    display:block;
    z-index:1001;
  }

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;

    flex-direction:column;
    align-items:flex-start;
    gap:0;

    padding:20px;
    border-top:1px solid #eee;

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);

    transition:0.3s ease;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .nav-links a{
    width:100%;
    padding:14px 0;
  }

  .dropdown{
    width:100%;
  }

  .dropdown-menu{
    position:static;
    width:100%;
    display:none;

    opacity:1;
    visibility:visible;
    transform:none;

    box-shadow:none;
    background:#f8f8f8;
    margin-top:6px;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }

  .login{
    width:100%;
    text-align:center;
    margin-top:10px;
  }

  /* HERO */
  .hero{
    flex-direction:column;
    text-align:center;
    padding:50px 20px;
  }

  .hero-left h1{
    font-size:42px;
  }

  .hero-right img{
    width:180px;
  }

  /* TESTIMONIALS */
  .testimonial-strip{
    padding:50px 20px;
  }

  .testimonial-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .reviews{
    flex-direction:column;
    width:100%;
  }

  .review-card{
    width:100%;
  }

  .diagonal-bg{
    width:100%;
    height:180px;
  }

  /* CARDS */
  .news-cards,
  .updates-cards{
    flex-direction:column;
    align-items:center;
  }

  .card,
  .update-card{
    width:100%;
    max-width:340px;
  }

  .slider-nav{
    display:none;
  }

  /* FOOTER */
  .footer-columns{
    grid-template-columns:1fr;
    gap:30px;
  }

  .container{
    width:92%;
  }
}