
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #F7FAF9;
  color: #1F1F1F;
}

/*  HEADER  */
.header {
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.container {
  width: 90%;
  margin: auto;
}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.site-title {
  font-size: 26px;
  font-weight: 800;
  color: #2E8B57;
  letter-spacing: -0.5px;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav ul li a {
  text-decoration: none;
  font-size: 17px;
  color: #1F1F1F;
  font-weight: 500;
  transition: 0.25s ease;
  font-weight: bold;
}

nav ul li a:hover {
  color: #2E8B57;
}

.quote-btn {
  background: #2E8B57;
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.25s ease;
  box-shadow: 0 4px 14px rgba(46, 139, 87, 0.25);
}

.quote-btn:hover {
  background: #246A45;
  box-shadow: 0 4px 18px rgba(36, 106, 69, 0.35);
}

/* RESPONSIVE */


@media (max-width: 992px) {
  .site-title {
    font-size: 22px;
  }

  nav ul {
    gap: 25px;
  }

  nav ul li a {
    font-size: 16px;
  }
}


@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 15px;
  }

  .site-title {
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .quote-btn {
    display: inline-block;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 20px;
  }

  nav ul li a {
    font-size: 15px;
  }

  .quote-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO SECTION */
.hero {
  padding: 70px 0;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* TEXT */
.hero-text h4 {
  color: #2E8B57;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #555;
}

/* FORM */
.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  width: 220px;
  padding: 12px;
  border: 2px solid #CFE8DA;
  border-radius: 6px;
}

/* BUTTON */
.cta-btn {
  background: #2E8B57;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.25);
}

.cta-btn:hover {
  background: #246A45;
  box-shadow: 0 4px 18px rgba(36, 106, 69, 0.35);
}

/* IMAGE */
.hero-img {
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: auto;            
  max-width: 420px;        
  height: auto;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .form-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .form-row input,
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-img img {
    max-width: 300px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 15px;
    padding: 10px;
  }
}


/*  STEPS SECTION */

.steps {
  margin-top: 60px;
  font-family: Arial, sans-serif;
}

.steps-top {
  background: #2E8B57; 
  padding: 50px 0;
  text-align: center;
  margin-bottom: 70px; /
}

.steps-top h2 {
  color: white;
  font-size: 34px;
  font-weight: 800;
}


.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


.step-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}


.icon-circle {
  font-size: 45px;
  color: #2E8B57;
  margin-bottom: 20px;
}


.step-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}


.step-box p {
  color: #6f6f6f;
  font-size: 16px;
  line-height: 1.6;
}
.about-section {
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

.about-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}


.about-text {
  flex: 1;
}

.about-text h4 {
  color: #2E8B57;
  font-size: 18px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}


.about-images {
  flex: 1;
  position: relative;
}

.img-top {
  width: 350px;
  border-radius: 20px;
  display: block;
  margin-left: auto;
}

.img-bottom {
  width: 350px;
  border-radius: 20px;
  margin-top: -100px;
  display: block;
  margin-left: 0;
}

/* RESPONSIVE */


@media (max-width: 992px) {
  .steps-top h2 {
    font-size: 30px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
  .steps-top {
    padding: 40px 20px;
  }

  .steps-top h2 {
    font-size: 26px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-box {
    text-align: center;
  }

  .icon-circle {
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 480px) {
  .steps-top h2 {
    font-size: 22px;
  }

  .step-box h3 {
    font-size: 18px;
  }

  .step-box p {
    font-size: 15px;
  }
}

/* RESPONSIVE  */


@media (max-width: 992px) {
  .about-text h2 {
    font-size: 36px;
  }

  .about-container {
    gap: 30px;
  }

  .img-top,
  .img-bottom {
    width: 300px;
  }
}


@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-images {
    margin-top: 40px;
  }

  .img-top,
  .img-bottom {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .img-bottom {
    margin-top: -60px;
  }
}


@media (max-width: 480px) {
  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }

  .img-bottom {
    margin-top: -40px;
  }
}

/*why choose us */
.why-choose {
  background: #2E8B57;
  padding: 80px 0;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}


.left-content {
  flex: 1;
}

.small-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
}

.left-content h2 {
  font-size: 42px;
  margin: 15px 0 30px;
  line-height: 1.2;
}

.images {
  position: relative;
}

.images img {
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
}

.img-two {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 70%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}


.right-content {
  flex: 1;
}

.intro-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.feature h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/*  RESPONSIVE  */


@media (max-width: 992px) {
  .left-content h2 {
    font-size: 36px;
  }

  .container {
    gap: 35px;
  }

  .images img {
    max-width: 360px;
  }

  .img-two {
    bottom: -40px;
    right: -25px;
  }
}


@media (max-width: 768px) {
  .why-choose {
    padding: 60px 0;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-content,
  .right-content {
    width: 100%;
  }

  .images {
    margin: 30px auto 0;
  }

  .images img {
    max-width: 90%;
    margin: auto;
    display: block;
  }

  .img-two {
    position: relative;
    bottom: 0;
    right: 0;
    width: 85%;
    margin: 20px auto 0;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .left-content h2 {
    font-size: 28px;
  }

  .intro-text {
    font-size: 15px;
  }

  .feature h4 {
    font-size: 18px;
  }

  .feature p {
    font-size: 14px;
  }
}


.cta-section {
  background: #ffffff;
  padding: 70px 0;
 
  border-bottom: 6px solid #246A45;
}

.cta-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left side */
.cta-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.cta-icon {
  width: 90px;
  height: 90px;
  background: #eaf3fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon img {
  width: 45px;
}

.cta-text h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 520px;
}


.cta-right {
  flex-shrink: 0;
}

.cta-btn {
  background: #2E8B57;
  color: #fff;
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #246A45;
}

/*  RESPONSIVE  */


@media (max-width: 992px) {
  .cta-text h2 {
    font-size: 30px;
  }

  .cta-container {
    gap: 30px;
  }

  .cta-icon {
    width: 80px;
    height: 80px;
  }

  .cta-icon img {
    width: 40px;
  }
}


@media (max-width: 768px) {
  .cta-section {
    padding: 50px 0;
    text-align: center;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
  }

  .cta-left {
    flex-direction: column;
    gap: 20px;
  }

  .cta-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-right {
    margin-top: 20px;
  }

  .cta-btn {
    padding: 14px 30px;
  }
}


@media (max-width: 480px) {
  .cta-text h2 {
    font-size: 24px;
  }

  .cta-text p {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}
.footer-bottom {
  background: #2E8B57;
  padding: 22px 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-left span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-right {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
/*  RESPONSIVE  */


@media (max-width: 992px) {
  .footer-container {
    gap: 20px;
  }

  .footer-left a,
  .footer-right {
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-left,
  .footer-right {
    flex-direction: column;
    gap: 5px;
  }
}


@media (max-width: 480px) {
  .footer-left a,
  .footer-right {
    font-size: 13px;
  }

  .footer-left span {
    display: block;
  }
}




/*privacy */

.privacy-container{
    --privacy-text:#222;
  --privacy-muted:#666;
  --privacy-link:#2E8B57;
  max-width:1100px;
  margin:60px auto;
  padding:0 20px;
}

.privacy-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.privacy-updated{
  font-size:14px;
  color:var(--privacy-muted);
  margin-bottom:30px;
}

.privacy-paragraph{
  font-size:16px;
  line-height:1.8;
  margin-bottom:20px;
}

.privacy-guide-title{
  font-size:22px;
  font-weight:700;
  margin:40px 0 15px;
}

.privacy-guide-list{
  padding-left:20px;
}

.privacy-guide-list li{
  margin-bottom:10px;
  font-size:16px;
}

.privacy-guide-list a{
  color:var(--privacy-link);
  text-decoration:none;
}

.privacy-guide-list a:hover{
  text-decoration:underline;
}


.privacy-section{
  margin-top:40px;
}

.privacy-paragraph{
  font-size:16px;
  line-height:1.8;
  margin-bottom:18px;
  color:#333;
}

.privacy-list{
  padding-left:25px;
  margin-bottom:25px;
}

.privacy-list-item{
  font-size:16px;
  line-height:1.8;
  margin-bottom:15px;
}

.privacy-ordered-list{
  padding-left:25px;
}

.privacy-ordered-item{
  font-size:16px;
  line-height:1.8;
  margin-bottom:10px;
}


/*terms*/
.term-container{
    --privacy-text:#222;
  --privacy-muted:#666;
  --privacy-link:#2E8B57;
  max-width:1100px;
  margin:60px auto;
  padding:0 20px;
}

.term-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.term-paragraph{
  font-size:16px;
  line-height:1.8;
  margin-bottom:20px;
}

.term-guide-title{
  font-size:22px;
  font-weight:700;
  margin:40px 0 15px;
}

/* ===== Base (Desktop default) ===== */
.term-container{
  --privacy-text:#222;
  --privacy-muted:#666;
  --privacy-link:#2E8B57;
  max-width:1100px;
  margin:60px auto;
  padding:0 20px;
}

.term-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.term-paragraph{
  font-size:16px;
  line-height:1.8;
  margin-bottom:20px;
}

.term-guide-title{
  font-size:22px;
  font-weight:700;
  margin:40px 0 15px;
}


@media (max-width: 992px){
  .term-container{
    margin:50px auto;
  }

  .term-title{
    font-size:34px;
  }

  .term-paragraph{
    font-size:15.5px;
  }

  .term-guide-title{
    font-size:20px;
  }
}


@media (max-width: 768px){
  .term-container{
    margin:40px auto;
    padding:0 15px;
  }

  .term-title{
    font-size:28px;
  }

  .term-paragraph{
    font-size:15px;
    line-height:1.7;
  }

  .term-guide-title{
    font-size:18px;
    margin:30px 0 12px;
  }
}


@media (max-width: 480px){
  .term-title{
    font-size:24px;
  }

  .term-paragraph{
    font-size:14.5px;
  }

  .term-guide-title{
    font-size:17px;
  }
}
    .form-container {
        display: flex;
        justify-content: space-between;
        padding: 50px;
        max-width: 1200px;
        margin: auto;
        gap: 40px;
    }

    .form-left {
        flex: 1;
    }

    .form-tagline {
        color: #2E8B57;
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .form-left h1 {
        font-size: 48px;
        font-weight: 800;
        margin: 0;
        line-height: 1.2;
    }

    .form-desc {
        margin: 20px 0;
        color: #555;
        font-size: 16px;
        max-width: 450px;
    }

    .form-input-row {
        display: flex;
        gap: 15px;
    }

    .form-input-row input {
        width: 120px;
        padding: 14px 18px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 16px;
    }

    .form-input-row button {
        background: #2E8B57;
        color: white;
        border: none;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 6px;
        cursor: pointer;
    }

    .form-input-row button:hover {
        background: #26734a;
    }

    
    .form-right {
        flex: 1;
        background: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    }

    .form-right h2 {
        margin-bottom: 25px;
        font-size: 28px;
        font-weight: 700;
    }

    .form-right input {
        width: 100%;
        padding: 15px;
        border-radius: 6px;
        border: 1px solid #ddd;
        margin-bottom: 15px;
        font-size: 15px;
        background: #f4f6f9;
    }

   
    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .form-checkbox input {
        margin-top: 3px;
        transform: scale(1.2);
        cursor: pointer;
    }

    .form-checkbox span {
        font-size: 14px;
        color: #444;
    }

    .form-checkbox a {
        color: #2E8B57;
        text-decoration: underline;
    }

   
    .form-submit-btn {
        width: 100%;
        padding: 15px;
        background: #2E8B57;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 18px;
        cursor: pointer;
    }

    .form-submit-btn:hover {
        background: #26734a;
    }

    @media (max-width: 900px) {
        .form-container {
            flex-direction: column;
            padding: 20px;
        }
    }