:root {
  --primary-color: #141414;
  --primary-color-light: #1f2125;
  --primary-color-extra-light: #35373b;
  --secondary-color: #535353;
  --secondary-color-dark: #2d2e2d;
  --text-light: #333;
  --hover: #f4b400;
  --white: #ffffff;
  --max-width: 1200px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

 body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

#page-header {
  position: relative;
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 14px;
  overflow: hidden;
  text-align: center;
  margin-top: 2%;
  margin-bottom: -4%;
  background-size: cover;
  background-position: center;
  margin-bottom: 5%;
}

#page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background-image: url("../images/banners/homepageBanner.png");
  background-size: inherit;
  background-position: inherit;
  filter: blur(3.5px); /* Increase blur intensity if needed */
  z-index: -1; /* Ensure the pseudo-element is behind the text */
}

  #page-header h1,
  #page-header p {
    color: var(--primary-color);
  }
.investment-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.investment-intro {
  max-width: 800px;
  text-align: center;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.plan-card {
  background: var(--primary-color);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.plan-card h3 {
  color: var(--hover);
  margin-bottom: 10px;
}

.plan-card a.btn {
  margin-top: 20px;
  background: var(--hover);
  color: var(--primary-color);
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }
}

.invest-form-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  margin: 3rem auto;
}

.invest-form-container h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.invest-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.invest-form label {
  font-weight: 600;
  color: var(--text-light);
}

.invest-form input,
.invest-form select,
.invest-form textarea {
  padding: 12px;
  border: 1px solid var(--primary-color-extra-light);
  border-radius: 6px;
  font-size: 1rem;
  background-color: #f9f9f9;
  color: var(--primary-color);
  transition: border 0.3s ease;
}

.invest-form input:focus,
.invest-form select:focus,
.invest-form textarea:focus {
  border-color: var(--hover);
  outline: none;
}

.invest-form textarea {
  resize: vertical;
  min-height: 100px;
}

.invest-form button[type="submit"] {
  background-color: var(--hover);
  color: var(--white);
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.invest-form button[type="submit"]:hover {
  background-color: #f0a000;
}
.flash-success {
  background-color: #d4edda;
  color: #155724;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #c3e6cb;
  text-align: center;
}

.flash-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #f5c6cb;
  text-align: center;
}


/* Responsive */
@media (max-width: 600px) {
  .invest-form-container {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }

  .invest-form input,
  .invest-form select,
  .invest-form textarea {
    font-size: 0.95rem;
  }
}

  .section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
  }
   footer.footer__container {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--max-width);
    margin: auto;
    border-top: 4px solid var(--hover);
    position: relative;
  }
  
  .footer__col {
    flex: 1 1 220px;
    min-width: 220px;
  }
  
  .footer__logo img {
    width: 120px;
    margin-bottom: 15px;
  }
  
  .footer__col h4 {
    font-size: 1.2rem;
    color: var(--hover);
    margin-bottom: 20px;
  }
  
  .footer__col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s ease;
    font-size: 15px;
  }
  
  .footer__col a:hover {
    color: var(--hover);
    transform: translateX(5px);
  }
  
  .footer__socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
  }
  
  .footer__socials a {
    font-size: 1.25rem;
    background-color: var(--hover);
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .footer__socials a:hover {
    background-color: var(--white);
    transform: scale(1.1);
  }
  
  .footer__bar {
    background-color: var(--primary-color-extra-light);
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--white);
    border-top: 1px solid var(--secondary-color);
    margin-top: 40px;
  }
  
  @media (max-width: 768px) {
    footer.footer__container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
  
    .footer__col {
      margin-bottom: 30px;
    }
  
    .footer__socials {
      justify-content: center;
    }
  }
