* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f7f6;
}

.get-help-section {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    
}

.section-header h1 {
    font-size: 40px;
    color: #3a5f4c;
}

.section-header p {
    color: #666;
    margin-top: 10px;
    font-size: 20px;
}

.card-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
    

.card {
      background: linear-gradient(to bottom, #c0dbcd, #c0dbcd);
    border-radius: 14px;
    flex: 1;
   
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h2 {
     margin-top: 30px;
    margin-bottom: 20px;
    color: #3a5f4c;
    text-align: center
}

.form-card form input,
.form-card form select,
.form-card form textarea {
    width: 80%;
    padding: 12px;
    margin: 0 auto 14px auto; /* center */
    display: block;          /* important */
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
}

.form-card textarea {
    resize: none;
    height: 100px;
}

.form-card button {
    width: 50%;
    padding: 12px;
   
   margin: 0 auto 14px auto; /* center */
   display: block;          /* important */
    background: #3a5f4c;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.form-card small {
    display: block;
    margin-top: 15px;
    text-align: center;
    color: #666;
    font-size: 15px;
    height: 40px;
}

.contact-card p.contain {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    
}
.contact-card h2 {
    margin-bottom: 10px;
    color: #3a5f4c;
    text-align: center;

}

.contact-box {
    display: flex;
    width: 60%;
    margin: 0 auto 15px auto; /* center */
    align-items: center;
    gap: 15px;
    background: #f0f4f3;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.contact-box .icon {
    font-size: 24px;
    background: #dce7e3;
    padding: 12px;
    border-radius: 50%;
}

.contact-box strong {
    
    color: #2f4f4f;
}

.contact-box p {
    margin: 3px 0;
    color: #333;
}

.contact-box span {
    font-size: 13px;
    color: #777;
}

/* Note */
.note {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 20px;
    color: #666;
   line-height: 1.8;

}

/* WHY EXISTS SECTION */
.why-exists {
    position: relative;
    text-align: center;
    padding: 90px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #eef4f2 100%);
    overflow: hidden;
}

/* Leaf decoration */
.why-leaf {
    position: absolute;
    left: 350px;
    top: 55%;
    transform: translateY(-50%);
    width: 180px;
    opacity: 0.25;
    z-index: 1;
}

/* Text Styling */
.why-exists h2 {
    font-size: 26px;
    color: #2f4f4f;
    margin-bottom: 5px;
    position: relative;
    padding: 0px 0px 0px 40px; /* space for leaf image */
    z-index: 2;
}

.why-exists p {
    max-width: 700px;
    margin-left: auto;     /* push content to right */
    margin-right: 0;
    line-height: 1.7;
    color: #444;
    text-align: justify;   /* proper text justify */
    position: relative;
    z-index: 2;
    font-size: 20px;
}



/* =========================
   RESPONSIVE DESIGN
========================= */

/* ---------- Large tablets / small laptops ---------- */
@media (max-width: 1024px) {
    .section-header h1 {
        font-size: 34px;
    }

    .section-header p {
        font-size: 18px;
    }

    .card-wrapper {
        max-width: 900px;
    }

    .contact-box {
        width: 80%;
    }

    .why-leaf {
        left: 220px;
        width: 150px;
    }
}

/* ---------- Tablets ---------- */
@media (max-width: 768px) {

    .get-help-section {
        padding: 50px 15px;
    }

    .section-header h1 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 17px;
    }

    .card-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .card {
        width: 100%;
    }

    /* FORM */
    .form-card form input,
    .form-card form select,
    .form-card form textarea {
        width: 90%;
    }

    .form-card button {
        width: 70%;
    }

    /* CONTACT BOX */
    .contact-box {
        width: 90%;
    }

    /* NOTE */
    .note {
        font-size: 18px;
        padding: 0 10px;
    }

    /* WHY EXISTS */
    .why-leaf {
        display: none;
    }

    .why-exists {
        padding: 70px 30px;
    }

    .why-exists h2 {
        padding: 0;
        font-size: 24px;
    }

    .why-exists p {
        margin: 0 auto;
        text-align: center;
        font-size: 18px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 480px) {

    .section-header h1 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 16px;
    }

    .card h2 {
        font-size: 22px;
    }

    .form-card form input,
    .form-card form select,
    .form-card form textarea {
        width: 95%;
        font-size: 14px;
    }

    .form-card button {
        width: 80%;
        font-size: 14px;
    }

    .contact-card p.contain {
        font-size: 15px;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-box .icon {
        font-size: 22px;
        padding: 10px;
    }

    .note {
        font-size: 16px;
        line-height: 1.6;
    }

    .why-exists {
        padding: 60px 20px;
    }

    .why-exists h2 {
        font-size: 22px;
    }

    .why-exists p {
        font-size: 16px;
    }
}
