* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header.header {
    background-color: white;
    color: rgb(0, 0, 0);
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #369db7;
}

.logo img {
    width: 70px;
    cursor: pointer;
}

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

.nav-links li {
    margin-right: 20px;
    font-size: 16px;

}

.nav-links a {
    color: rgb(0, 0, 0);
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links a:hover {
    background-color: #369db7;
    border-radius: 4px;
    color: white;
}

.nav-links a.active {
    background-color: #369db7;
    border-radius: 4px;
    color: white;
}

.mobile-view-btn {
    display: none;
    /* display: inline-flex; */
    /* height: 20px; */
    align-items: center;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-left: 0.75rem;
    font-size: 0.875rem;
    /* color: #f59e0b; */
    border-radius: 0.375rem;
}

.mobile-view-btn img{
    height: 30px;
}

.about {
    background: rgb(222, 248, 251);
    background: linear-gradient(360deg, rgb(172, 252, 255) 0%, rgb(247, 255, 255) 100%);
    padding: 90px 0 20px 0;
    margin: 0;
    text-align: center;
}

.about h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1rem;
    color: #323030;
    max-width: 800px;
    margin: 0 auto;
}

.about-info {
    margin: 2rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.about-img {
    width: 20rem;
    height: 20rem;

}

.about-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: contain;
}

.about-info p {
    font-size: 17px;
    margin: 15px 2rem;
    text-align: justify;
    font-weight: 500;
    line-height: 20px;
}

@media (max-width: 768px) {
    .about h1 {
        font-size: 2rem;
    }

    .about p {
        font-size: 0.9rem;
    }

    .about-info {
        flex-direction: column;
        text-align: center;
    }

    .about-info p {
        margin: 1rem 2rem;
    }

}

@media only screen and (max-width: 600px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        background-color: white;
        width: 100%;
        padding: 0;
        left: 0;
        z-index: 1;
        text-align: center;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    }
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        padding: 15px 0;
        display: block;
    }

    .nav-links a:hover {
        background-color: #369db7;
        color: white;
    }
    .mobile-view-btn{
        display: inline-flex;
        /* height: 30px; */
        background-color: #aae4f3;
        align-items: center;
        padding: 0.5rem;
        margin-top: 0.5rem;
        margin-left: 0.75rem;
        font-size: 0.875rem;
        /* color: #f59e0b; */
        border-radius: 0.375rem;
    }
}

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

.wrapper {
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.wrapper.show {
    right: 20px;
}

.wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.wrapper header i {
    color: #4070f4;
    font-size: 32px;
}

.wrapper header h2 {
    color: #4070f4;
    font-weight: 500;
}

.wrapper .data {
    margin-top: 16px;
}

.wrapper .data p {
    color: #333;
    font-size: 16px;
}

.wrapper .data p a {
    color: #4070f4;
    text-decoration: none;
}

.wrapper .data p a:hover {
    text-decoration: underline;
}

.wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.wrapper .buttons #acceptBtn:hover {
    background-color: #034bf1;
}

.wrapper .buttons #declineBtn {
    border: 2px solid #4070f4;
    background-color: #fff;
    color: #4070f4;
}

.wrapper .buttons #declineBtn:hover {
    background-color: #4070f4;
    color: #fff;
}

@media only screen and (max-width: 425px) {
    .wrapper {
        max-width: calc(100vw-20px);
        border-radius: 0;
        padding: 10px;
    }

    .wrapper.show {
        right: 0px;
    }

    .wrapper header i {
        font-size: 24px;
    }

    .wrapper header h2 {
        font-size: 18px;
    }

    .wrapper .data p {
        font-size: 14px;
    }
}