@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1E6F4D;
    --primary-color-400: #2CA070;
    --primary-color-300: #3FCA90;
    --primary-color-200: #6FD8AC;
    --primary-color-100: #9FE5C8;
    --secondary-color: #F2C94C;
    --accent-color: #FBF3DB;
    --dark-color: #333333;
    --light-bg: #F4F4F4;
    --light-gray: #B0ABAB;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8fbfa;
    color: var(--dark-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button, input, textarea {
    font-family: 'Poppins', sans-serif;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8fbfa;
    color: var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0%;
}

.nav-links li {
    display: inline;
}

.align-left {
    text-align: left;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-right: 2rem;
}

.menu-toggle img {
    width: 100%;
}

.logo {
    padding: 0.5rem;
    background: #f8fbfa;
    border-radius: 0.25rem;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.page-header {
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.page-header p {
    color: var(--secondary-color);
}

.container {
    padding: 40px;
    width: 80vw;
    margin: 60px auto 0 auto;
}

.container-home {
    width: 80vw;
    margin: 0 auto;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 0.25rem;
    margin-right: 2rem;
    font-weight: 500;
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.contact-btn a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-btn a:hover {
    color: var(--secondary-color);
}

.contact-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    margin: 4rem 0;
}

.contact-section-item {
    text-align: center;
    padding: 2rem;
    background: #1e6f4d1c;
    border-radius: 0.5rem;
    color: var(--primary-color);
}

.contact-section-item p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.body-section-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
    margin-top: 60px;
    align-items: center;
}

.section-text {
    flex: 1;
}

.section-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.section-text h1,
.section-text h2 {
    color: var(--primary-color);
    font-weight: 600;
}

.section-text p {
    color: var(--primary-color-400);
}

.section-text .subtitle {
    color: var(--light-gray);
}

.section-image {
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
}

.copy-section {
    text-align: center;
    padding: 20px;
    color: var(--primary-color);
    font-style: italic;
}

.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.feature-item {
    text-align: center;
    color: var(--light-gray);
}

.feature-item h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.feature-item img {
    width: 80px;
    height: 80px;
}

.why-quicklend-list {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.why-quicklend-item {
    display: flex;
    gap: 10px;
    color: var(--light-gray);
}

.why-quicklend-item img {
    width: 24px;
    height: 24px;
}

.item-bold {
    font-weight: bold;
    color: var(--primary-color);
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border: none;
}

th {
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    color: white;
}

tr:nth-child(odd) {
    color: var(--primary-color);
}

tr:nth-child(even) {
    color: var(--secondary-color);
}

.row {
    margin: 2rem 0;
}

.row h3 {
    color: var(--primary-color);
    margin-top: 0;
    text-transform: capitalize;
}

.row h2 {
    color: var(--primary-color);
    margin-top: 0;
    text-transform: capitalize;
}

.row div {
    color: var(--light-gray);
    margin: 0;
    line-height: 1.5;
}

.row a {
    color: var(--secondary-color);
    text-decoration: none;
}

.capitalize {
    text-transform: capitalize;
}

.faq-wrapper {
    width: 60%;
    margin: auto;
}

.faq-icon-title {
    display: flex;
    gap: 10px;
}

.faq-title {
    margin: auto;
}

.faq-item {
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    margin: 1rem 0;
    padding: 10px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-question img {
    padding: 5px 10px;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    color: #555;
    margin: 5px 10px;
    padding: 10px;
    border-radius: 0.5rem;
    font-size: 14px;
}
.icon {
    width: 20px;
    height: 20px;
}

.center {
    text-align: center;
}

.footer-content-bottom {
    position: relative;
    background-color: var(--primary-color);
    background-image: repeating-linear-gradient(135deg, hsla(207,0%,63%,0.05) 0px, hsla(207,0%,63%,0.05) 1px,transparent 1px, transparent 11px,hsla(207,0%,63%,0.05) 11px, hsla(207,0%,63%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(90deg, hsla(207,0%,63%,0.05) 0px, hsla(207,0%,63%,0.05) 1px,transparent 1px, transparent 11px,hsla(207,0%,63%,0.05) 11px, hsla(207,0%,63%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(225deg, hsla(207,0%,63%,0.05) 0px, hsla(207,0%,63%,0.05) 1px,transparent 1px, transparent 11px,hsla(207,0%,63%,0.05) 11px, hsla(207,0%,63%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(180deg, hsla(207,0%,63%,0.05) 0px, hsla(207,0%,63%,0.05) 1px,transparent 1px, transparent 11px,hsla(207,0%,63%,0.05) 11px, hsla(207,0%,63%,0.05) 12px,transparent 12px, transparent 32px),linear-gradient(180deg, rgb(30,111,77),rgb(51,51,51));
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-content-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.6);
    filter: blur(2px);
}

.footer-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 0 auto;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    color: white;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.footer-contact-item-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 0.5rem
}

.footer-contact-item img {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    margin: 2rem auto;
    gap: 1rem;
}

.footer-links-item {
    padding: 0.35rem 0;
}

.footer-links-item a {
    color: white;
    text-decoration: none;
}

.footer-links-item a:hover {
    color: var(--secondary-color);
}

.footer-links-item:hover {
    cursor: pointer;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.text-lg {
    font-size: 1.25rem;
}

.font-bold {
    font-weight: bold;
}

@media screen and (min-width: 1024px) {
    .footer-contact {
        width: 70%;
    }

    .footer-links {
        width: 80%;
    }
    
}

@media screen and (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }

    .section-text h1 {
        font-size: 28px;
    }

    nav {
        flex-direction: column;
        text-align: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px;
    }

    .nav-links a:hover {
        color: var(--primary-color);
    }

    .faq-wrapper {
        width: 100%;
    }

    .contact-btn {
        margin-right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0;
        background: white;
        width: 100%;
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
        background-color: #f8fbfa;
    }

    .nav-links li:hover {
        background: var(--secondary-color);
        color: var(--primary-color);
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .container-home {
        width: 100vw;
        margin: 0 auto;
    }

    .mobile-center {
        text-align: center;
    }

    .footer-contact {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        width: 80%;
        gap: 0.5rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .body-section-content {
        grid-template-columns: 1fr;
    }
    .features {
        grid-template-columns: 1fr;
    }
}