* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(56, 102, 65, 0.9);
  color: white;
  z-index: 1000;
}

header img {
  height: 80px;
}

.contact {
  font-size: 24px;
  margin-right: 25px;
}

.hamburger {
  cursor: pointer;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  
}

/* Dropdown Menu */
.menu {
  position: fixed;
  top: 80px;
  right: 50px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  font-size: 18px;
  padding: 15px 0;
  min-width: 220px;
  z-index: 2000;
  animation: dropdownFade 0.3s ease;
}

.menu a {
  text-decoration: none;
  color: #386641;
  padding: 12px 20px;
  transition: all 0.3s ease;
  display: block;
}

.menu a:hover {
  background: #386641;
  color: #fff !important;
}

.menu.active {
  display: flex;
}

/* Animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
   Responsive Styles
 */


@media (max-width: 992px) {
  header {
    padding: 15px 20px;
  }

  header img {
    height: 60px;
  }

  .contact {
    font-size: 18px;
    margin-right: 15px;
  }

  .hamburger {
    display: block; 
  }

  .menu {
    right: 20px; 
    top: 70px;
    min-width: 180px;
  }
}

/* Mobile only */
@media (max-width: 576px) {
  header {
    flex-direction: row;
    justify-content: space-between;
  }

  header img {
    height: 50px;
  }

  .contact {
    display: none; 
  }

  .hamburger {
    font-size: 28px;
  }

  .menu {
    width: 90%; 
    right: 5%;
    top: 70px;
  }

  .menu a {
    font-size: 16px;
    padding: 10px 15px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-box {
  background: rgba(56, 102, 65, 0.8);
  color: white;
  padding: 70px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-box h1 {
  margin-top: 50px;
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.points {
  display: flex;
  gap: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 24px;
  flex-wrap: wrap; 
}

.points span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.points span::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #f97a00;
  border-radius: 50%;
  flex-shrink: 0;
}

.zip-box {
  display: flex;
  gap: 15px;
}

.zip-box input {
  padding: 20px;
  border-radius: 30px;
  border: none;
  flex: 1;
  font-size: 18px;
}

.zip-box button {
  background: #f97a00;
  color: white;
  border: 2px solid transparent;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
}

.zip-box button:hover {
  background: transparent;
  border: 2px solid #f97a00;
  color: #f97a00;
  font-weight: bold;
}

/* 
   Responsive Styles
*/


@media (max-width: 992px) {
  .hero-box {
    width: 70%;
    padding: 50px;
  }

  .hero-box h1 {
    font-size: 38px;
    margin-top: 30px;
  }

  .points {
    font-size: 20px;
    gap: 20px;
  }

  .zip-box input {
    font-size: 16px;
    padding: 15px;
  }

  .zip-box button {
    font-size: 16px;
    padding: 12px 25px;
  }
}


@media (max-width: 576px) {
  .hero {
    justify-content: center;
  }

  .hero-box {
    width: 100%;
    height: auto;
    padding: 30px 20px;
    text-align: center;
  }

  .hero-box h1 {
    font-size: 28px;
    margin-top: 20px;
  }

  .points {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 18px;
  }

  .zip-box {
    flex-direction: column;
    gap: 10px;
  }

  .zip-box input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }

  .zip-box button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
}

.features {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
}

.features h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #386641;
}

.feature-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.feature-box .icon {
  width: 160px;
  height: 160px;
  border: 3px solid #f97a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 70px;
  color: #386641;
  position: relative;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Protect Section */
.protect-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.protect-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.protect-box {
  background: rgba(56, 102, 65, 0.8);
  color: white;
  padding: 70px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.protect-box h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.protect-box p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.protect-box a {
  background: #f97a00;
  color: white;
  border: 2px solid transparent;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.protect-box a:hover {
  background: transparent;
  border: 2px solid #f97a00;
  color: #f97a00;
}

/* Claim Section */
.claim-section {
  padding: 50px 5%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.content-box {
  flex: 1 1 45%;
  padding-right: 30px;
}

.content-box h1 {
  font-size: 42px;
  font-weight: 700;
  color: #386641;
  line-height: 1.2;
}

.content-box p {
  font-size: 16px;
  color: #444;
  margin-top: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-learn {
  background: #f97a00;
  color: white;
  border: 2px solid transparent;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  display: inline-block;
}

.btn-learn:hover {
  background: transparent;
  border: 2px solid #f97a00;
  color: #f97a00;
}

.image-box {
  flex: 1 1 45%;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.image-box img {
  width: 48%;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  object-fit: cover;
}

/*
   Responsive Styles
 */


@media (max-width: 992px) {
  .features h1 {
    font-size: 36px;
  }

  .feature-box .icon {
    width: 120px;
    height: 120px;
    font-size: 50px;
  }

  .protect-box {
    width: 70%;
    padding: 50px;
  }

  .protect-box h2 {
    font-size: 36px;
  }

  .content-box h1 {
    font-size: 32px;
  }
}


@media (max-width: 576px) {
  /* Features */
  .features h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .feature-box {
    max-width: 100%;
  }

  .feature-box .icon {
    width: 90px;
    height: 90px;
    font-size: 36px;
  }

  /* Protect Section */
  .protect-section {
    justify-content: center;
    height: auto;
    padding: 40px 0;
  }

  .protect-box {
    width: 100%;
    height: auto;
    padding: 30px 20px;
    text-align: center;
  }

  .protect-box h2 {
    font-size: 26px;
  }

  .protect-box p {
    font-size: 16px;
  }

  .protect-box a {
    margin: 0 auto;
    font-size: 16px;
    padding: 12px 25px;
  }

  /* Claim Section */
  .row {
    flex-direction: column;
  }

  .content-box {
    flex: 1 1 100%;
    padding-right: 0;
    text-align: center;
  }

  .content-box h1 {
    font-size: 28px;
  }

  .content-box p {
    font-size: 14px;
  }

  .image-box {
    flex: 1 1 100%;
    flex-direction: column;
    gap: 15px;
  }

  .image-box img {
    width: 100%;
  }
}



/* Info Section */
.info-section {
  background-color: #386641; 
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.info-section h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.info-section p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-info {
  background: #fff;
  color: #333;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  display: inline-block;
}

.btn-info:hover {
  background: #f97a00; 
  color: #fff;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .info-section h1 {
    font-size: 28px;
  }

  .info-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .btn-info {
    font-size: 16px;
    padding: 12px 28px;
  }
}

@media (max-width: 600px) {
  .info-section {
    padding: 40px 15px;
  }

  .info-section h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .info-section p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .btn-info {
    width: 100%;
    font-size: 15px;
    padding: 12px;
    border-radius: 40px;
  }
}






.footer {
  background: #f9f9f9;
  padding: 60px 8% 30px;
}


.footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 18%;
  margin-bottom: 20px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #386641;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #080808;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #080808;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f97a00;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #386641;
  padding-top: 20px;
  border-top: 1px solid #386641;
}


.contact-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  color: #386641;
  text-decoration: underline;
  transition: 0.3s;
}

.contact-link:hover {
  color: #f97a00;
}

/*  Responsive Footer */
@media (max-width: 1024px) {
  .footer .footer-top {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer .footer-top {
    justify-content: center;
    gap: 30px;
  }

  .footer-col {
    flex: 1 1 45%;  
    text-align: center;
  }

  .footer-col h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer .footer-top {
    flex-direction: column; 
    gap: 25px;
  }

  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-col p,
  .footer-col ul li a {
    font-size: 14px;
  }
}
