/* Reset & Fonts */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background:#33302D;
  color: #2d2d2d;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  background-color: #f17c28;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  display: inline-block;
  margin: 10px 10px;
  transition: background 0.3s;
}
.btn-primary:hover {
  background-color: #cf5e15;
}


/* Hero Section */
.hero {
  background: url('../assets/myubuntuwealthlogo.webp') no-repeat center center / cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

/* Add this for larger (PC) screens */
@media screen and (min-width: 768px) {
  .hero {
    min-height: 300px; /* You can adjust this value */
  }
}

.hero-section {
  background: #4e9d63;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* SECTION 2: Why UbuntuWealth */
.why-ubuntu {
  background: #f8f3ec;
  padding: 60px 20px;
  text-align: center;
}
.why-ubuntu h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.feature {
  max-width: 250px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* SECTION 3: Investment Plans */
.plans {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.plan-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.plan {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  max-width: 260px;
  background: #fcfcfc;
}
.plan ul {
  text-align: left;
  padding-left: 20px;
}

/* SECTION 4: Testimonials */
.testimonials {
  background: #e9d5b4;
  padding: 60px 20px;
  text-align: center;
}
.testimonial-slider blockquote {
  font-style: italic;
  max-width: 600px;
  margin: auto;
}
.testimonial-slider footer {
  margin-top: 10px;
  font-weight: bold;
}

/* SECTION 5: CTA Section */
.cta-section {
  background: #4e9d63;
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.cta-buttons {
  margin-top: 20px;
}
.btn-secondary {
  background: white;
  color: #4e9d63;
  padding: 12px 20px;
  margin-left: 10px;
  border-radius: 5px;
  display: inline-block;
}

/* SECTION 6: Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
}

    h2, h3 {
      color: #333;
    }
    .highlight {
      font-weight: bold;
      color: #007b5e;
    }
    .section {
      margin-bottom: 30px;
    }
    ul {
      list-style: none;
      padding-left: 0;
    }
    ul li::before {
      content: "\f058"; /* Unicode for check-circle */
	  font-family: "Font Awesome 6 Free";
      margin-right: 5px;
      color: green;
    }
    .icon {
      margin-right: 8px;
    }
    hr {
      border: 1px solid #ccc;
    }
.image-center {
  text-align: center;
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

#menu-toggle {
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  background-color: #33302D;
  color: white;
  width: 100px;
  text-align: center;
  border-radius: 5px;
}

#sandwich-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  top: 50px;
  left: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#sandwich-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#sandwich-menu ul li {
  margin: 10px 0;
}

#sandwich-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

#sandwich-menu ul li a:hover {
  color: green;
}
