* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header.header {
    background-color: rgb(255, 255, 255);
    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;
}

.contact {
    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;
    min-height: 100vh;
}

.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    min-height: 100%;
    line-height: 25px;
}

.shareLogos{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.shareLogos a img{
    width: 25px;
}

.sloganLogo{
    display: flex;
    justify-content: center;
}

.sloganLogo img {
    width: 50%;
}

section {
    margin-bottom: 30px;
}

h1,
h2 {
    color: #000;
    margin-bottom: 10px;
}

ul {
    list-style-type: disc;
    /* margin-left: 30px; */
}

li{
    font-size: 18px;
    font-weight: 600;
}

p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }
}

/* @media (max-width: 576px) {
    header {
        padding: 15px;
    }
} */

@media (max-width: 768px) {

    .contact h1 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 0.9rem;
    }
}

@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;
    }
}