/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ================= HEADER ================= */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.25);
 border: 1px solid rgba(255, 255, 255, 0.1);
border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 100;

}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 25px;
  flex-wrap: wrap;
}

.logo img {
  height: 58px;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #255c64;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
 bottom: -6px;
width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.35);
  transition: 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.45);
}

.menu-toggle {
  display: none;
}
/* ================= BANNER / HERO ================= */
/* ================= BANNER / HERO ================= */
.banner-section.blog-hero {
  width: 100%;
  height: 800px;
background: url('../images/blog banner img.png') center/cover no-repeat;
osition: relative;
margin-top: 85px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vp-investment {
  background: #fafafa;
  padding: 80px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
}

.vp-container {
  max-width: 1180px;
  margin: auto;
}

.vp-hero {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.vp-label {
  display: inline-block;
  color: #970808;
  background: rgba(151, 8, 8, 0.08);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.vp-hero h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.vp-hero p,
.vp-intro-card p,
.vp-approved p,
.vp-conclusion p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.vp-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 30px;
  margin-bottom: 70px;
}

.vp-intro-card,
.vp-highlight-card,
.vp-approved,
.vp-comparison,
.vp-tips,
.vp-investors,
.vp-conclusion {
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.vp-hero-image {
  width: 85%;          /* decrease width */
  height: 650px;       /* increase height */
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 30px;
}

.vp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vp-approved-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  border-radius: 22px;
}

.vp-approved {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

@media(max-width:768px){

  .vp-hero-image img{
    height:300px;
  }

  .vp-approved{
    grid-template-columns:1fr;
  }

}

.vp-intro-card {
  border-top: 5px solid #970808;
}

.vp-intro-card h2,
.vp-approved h2,
.vp-comparison h2,
.vp-tips h2,
.vp-investors h2,
.vp-conclusion h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 18px;
}

.vp-intro-card ul {
  margin-top: 22px;
  padding-left: 20px;
}

.vp-intro-card li {
  margin-bottom: 12px;
  color: #444;
  font-size: 16px;
}

.vp-highlight-card {
  background: #970808;
  color: #fff;
}

.vp-highlight-card h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.vp-city-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vp-city-list span {
  background: rgba(255, 255, 255, 0.13);
  padding: 14px 18px;
  border-radius: 12px;
}

.vp-section-title {
  text-align: center;
  margin-bottom: 35px;
}

.vp-section-title h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 10px;
}

.vp-section-title p {
  color: #666;
  font-size: 17px;
}

.vp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 70px;
}

.vp-benefit-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.vp-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(151, 8, 8, 0.12);
}

.vp-benefit-card span {
  color: #970808;
  font-size: 28px;
  font-weight: 800;
}

.vp-benefit-card h3 {
  margin: 16px 0 12px;
  color: #111;
  font-size: 20px;
}

.vp-benefit-card p,
.vp-tips-grid p {
  color: #555;
  line-height: 1.7;
}

.vp-approved {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 35px;
  align-items: center;
  margin-bottom: 35px;
}

.vp-approved-list {
  background: #fff5f5;
  border-radius: 18px;
  padding: 25px;
}

.vp-approved-list p {
  color: #970808;
  font-weight: 700;
  margin-bottom: 12px;
}

.vp-comparison,
.vp-tips,
.vp-investors,
.vp-conclusion {
  margin-bottom: 35px;
}

.vp-table-wrap {
  overflow-x: auto;
  margin-top: 25px;
}

.vp-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.vp-table-wrap th {
  background: #970808;
  color: #fff;
  padding: 16px;
  text-align: left;
}

.vp-table-wrap td {
  padding: 16px;
  border-bottom: 1px solid #eee;
  color: #444;
}

.vp-table-wrap tr:nth-child(even) {
  background: #fafafa;
}

.vp-tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.vp-tips-grid div {
  background: #fafafa;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #970808;
}

.vp-tips-grid h3 {
  color: #111;
  margin-bottom: 10px;
}

.vp-investors div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.vp-investors span {
  background: #fff5f5;
  color: #970808;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 700;
}

.vp-conclusion p {
  margin-bottom: 14px;
}

.vp-cta {
  background: linear-gradient(135deg, #970808, #5f0303);
  padding: 55px 35px;
  border-radius: 26px;
  color: #fff;
  text-align: center;
}

.vp-cta span {
  display: block;
  margin-bottom: 12px;
  opacity: 0.9;
  font-weight: 700;
}

.vp-cta h2 {
  font-size: 36px;
  max-width: 780px;
  margin: 0 auto 25px;
}

.vp-cta a {
  display: inline-block;
  background: #fff;
  color: #970808;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 800;
  margin-bottom: 28px;
}

.vp-cta-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.vp-cta-points p {
  background: rgba(255, 255, 255, 0.15);
  padding: 11px 16px;
  border-radius: 30px;
}

@media (max-width: 1100px) {
  .vp-benefit-grid,
  .vp-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vp-intro-grid,
  .vp-approved {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .vp-investment {
    padding: 50px 15px;
  }

  .vp-hero h1 {
    font-size: 34px;
  }

  .vp-section-title h2,
  .vp-intro-card h2,
  .vp-approved h2,
  .vp-comparison h2,
  .vp-tips h2,
  .vp-investors h2,
  .vp-conclusion h2,
  .vp-cta h2 {
    font-size: 26px;
  }

  .vp-benefit-grid,
  .vp-tips-grid {
    grid-template-columns: 1fr;
  }

  .vp-intro-card,
  .vp-highlight-card,
  .vp-approved,
  .vp-comparison,
  .vp-tips,
  .vp-investors,
  .vp-conclusion {
    padding: 25px;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}
.footer-col ul li a:hover {
color: #fff7c5;
padding-left: 4px;
}
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-info li {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
 padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}
