:root {
    --primary-color: #044182;
    --secondary-color: #2F74C1;
    --accent-color: #30AEC7;
    --dark-color: #333333;
    --light-bg: #F4F4F4;
    --light-gray: #B0ABAB;
}

body {
    font-family: Lato, sans-serif;
    margin: 0;
    padding: 0;
}

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

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

body::-webkit-scrollbar-thumb {
    background: var(--accent-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: white;
    color: var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
    box-shadow: 0px 0px 16px 8px var(--accent-color);
}

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

.nav-links li {
    display: inline;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.contact-btn a {
    text-decoration: none;
    color: white;
}

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

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

.contact-section-item p {
    color: var(--primary-color);
    font-weight: bold;
    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, h2 {
    color: var(--primary-color)
}

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

.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(--accent-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);
}

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

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

}

.why-peaklend-item {
    display: flex;
    gap: 10px;
    color: var(--light-gray);
}
.item-bold {
    font-weight: bold;
    color: var(--accent-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(--accent-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(--accent-color);
    text-decoration: none;
}

.capitalize {
    text-transform: capitalize;
}

.faq-item {
    border: 1px solid var(--accent-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(--accent-color)
}

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

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

.center {
    text-align: center;
}

.footer-content-bottom {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-content {
    background: url('images/footer_bg.svg') no-repeat center center;
    background-size: cover;
    text-align: center;
    height: 18rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.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;
}

.footer-contact-item-parent {
    background-color: var(--accent-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 {
    transform: skew(-20deg);
    padding: 0.35rem 0;
}

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

.footer-links-item a:hover {
    color: var(--primary-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%;
    }
    
    .footer-content {
        height: 22rem;
    }
}

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

    nav {
        flex-direction: column;
        text-align: center;
    }

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

    .menu-toggle {
        display: block;
    }

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

    .nav-links.active {
        display: flex;
        box-shadow: 0px 16px 16px 0px var(--accent-color);
    }

    .nav-links li:hover {
        background: var(--accent-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-content {
        background: var(--primary-color);
        height: 25rem;
    }

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

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

    .footer-links-item {
        transform: skew(0deg);
    }

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

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