* {
    margin: 0;
    padding: 0;
    font-family: var(--defFontFamily, Arial, sans-serif);
    line-height: 1.5;
    box-sizing: border-box;
}

.main1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 60px 100px;
    background-color: rgb(236, 253, 245);
    padding-bottom: 130px;
}

.main1-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 60%;
    text-align: center;
}

.main1-icon {
    width: 80px;
    height: 80px;
    background-color: rgb(0, 200, 150);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main1-icon img {
    width: 40px;
    height: 40px;
}

.main1-header h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: rgb(30, 30, 30);
}

.main1-header p {
    font-size: var(--defMFont, 1rem);
    color: rgb(80, 80, 80);
}

.main1-boxes {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.main1-box {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.295);
}

.main1-box:hover {
    transform: translateY(-5px);
}

.box-icon {
    width: 60px;
    height: 60px;
    background-color: rgb(220, 252, 240);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-icon img {
    width: 30px;
    height: 30px;
}

.main1-box h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgb(30, 30, 30);
}

.main1-box p {
    font-size: 1rem;
    color: rgb(100, 100, 100);
    line-height: 1.6;
}

/* ---------------------------------------------------------------------------- */

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.member {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.member h4 {
    font-size: 2.5rem;
    font-weight: 400;
    color: rgb(30, 30, 30);
}

.member p {
    font-size: 18px;
    color: rgb(80, 80, 80);
}

.iframe {
    border: 45px solid rgb(249, 250, 251);
    border-radius: 8px;
    /* padding: 20px; */
    /* background-color: #3CB371; */
    box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.079);
}

.next {
    background-color: rgb(0, 153, 102);
    padding: 30px;
    border-radius: 12px;
    width: 900px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    color: white;
}
.next h3{
    font-size: var(--defLFont);
    font-weight: 400;
}
.next p {
    text-align: center;
}

/* ---------------------------------------------------------------------------- */

.questions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: rgb(236, 253, 245);
}
.questions h3{
    font-size: 2.5rem;
    font-weight: 400;
}
.questionsA {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    width: 900px;
    max-width: 900px;
    display: flex;
    gap: 5px;
    flex-direction: column;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.079);
}
.questionsA h2 {
    font-size: var(--defSFont);
    font-weight: 400;
}
.questionsA p {
    color: #4a5568;

}



