/* ===== GLOBAL ===== */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background: #F5F7FA;
  color: #333;
}

/* ===== HEADER ===== */

header {
  background: #0072BC;   /* Blue background like screenshot */
  color: white;
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #FFFFFF;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #8DC63F;   /* Green hover accent */
}

/* ===== CALL TO ACTION BUTTON ===== */

.cta {
  background: #8DC63F; /* Green accent */
  padding: 10px 18px;
  border-radius: 5px;
  color: white !important;
  font-weight: bold;
}

/* ===== HERO SECTION ===== */

.hero {
  background: linear-gradient(
      rgba(0, 114, 188, 0.85),
      rgba(0, 114, 188, 0.85)
    ),
    url('../images/finance.jpg') center/cover;
  color: white;
  text-align: center;
  padding: 140px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* ===== BUTTONS ===== */

.btn {
  background: #8DC63F;   /* Green */
  padding: 14px 28px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn:hover {
  background: #6FA831;   /* Darker green hover */
}

/* ===== PRODUCTS SECTION ===== */

.products {
  padding: 70px 20px;
  text-align: center;
  background: #FFFFFF;
}

.products h2 {
  color: #0072BC;  /* Blue headings */
  margin-bottom: 40px;
}

.card {
  display: inline-block;
  width: 280px;
  margin: 20px;
  padding: 30px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  color: #0072BC;  /* Blue titles */
}

/* ===== FORMS ===== */

form {
  background: #FFFFFF;
  padding: 30px;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  margin-top: 18px;
  background: #8DC63F;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: bold;
  border-radius: 5px;
}

button:hover {
  background: #6FA831;
}

/* ===== FOOTER ===== */

footer {
  background: #0072BC;  /* Same blue as header */
  color: white;
  text-align: left;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .column {
  width: 30%;
  margin-bottom: 20px;
}

footer h4 {
  color: #FFFFFF;
  margin-bottom: 15px;
}

footer p, footer a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 5px 0;
  display: block;
}

footer a:hover {
  color: #8DC63F;
}

.logo img {
  height: 50px;   /* Adjust size here */
  width: auto;
  display: block;
}