/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* ===== CONTAINER ===== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */

.main-header {
  background: #0b3b2e;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
}

.logo img {
  width: 40px;
}

.nav-links a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-links .active {
  font-weight: bold;
}

/* ===== HERO ===== */

.insurance-hero {
  background: #124f3d;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.insurance-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.insurance-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== INSURANCE SECTIONS ===== */

.insurance-block {
  padding: 80px 0;
}

.insurance-block.alt {
  background: #f5f5f5;
}

.insurance-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.insurance-text {
  flex: 1;
}

.insurance-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #0b3b2e;
}

.insurance-text p {
  margin-bottom: 15px;
  font-size: 16px;
}

.insurance-image {
  flex: 1;
}

.insurance-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== BUTTON ===== */

.green-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #0b8f5a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}

.green-btn:hover {
  background: #0a7a4c;
}

/* ========== FOOTER ========== */

.main-footer {
  background: #0a2342;
  color: #fff;
  margin-top: 100px;
}

/* Top Area */

.footer-top {
  padding: 80px 0 50px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
}

/* Columns */

.footer-col h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #f1f1f1;
}

.footer-col p {
  color: #ddd;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Lists */

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #ccc;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Brand */

.brand p {
  margin: 15px 0 20px;
}

/* Social */

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;

  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.1rem;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
  color: #0a2342;
}

/* Newsletter */

.footer-form {
  display: flex;
  margin-top: 15px;
}

.footer-form input {
  flex: 1;

  padding: 10px 12px;

  border: none;
  border-radius: 5px 0 0 5px;

  outline: none;
}

.footer-form button {
  background: #27ae60;
  color: #fff;

  border: none;

  padding: 0 18px;

  border-radius: 0 5px 5px 0;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.footer-form button:hover {
  background: #219150;
}

/* Bottom Bar */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  font-size: 0.9rem;
  color: #ccc;
}

/* ========== RESPONSIVE FOOTER ========== */

@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-form {
    justify-content: center;
  }

  .footer-form input {
    max-width: 250px;
  }

  .bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
/* Footer Contact Info */

.footer-contact {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #ddd;
}

.footer-contact p {
  margin-bottom: 6px;
}

/* Mobile adjustment */

@media (max-width: 768px) {
  .info-phone-img {
    max-width: 220px;
  }
}
