body {
    margin: 0;
    padding: 0;
}

.header {
    position: sticky;
    z-index: 1;
    top: 0;
    padding: 0 20px;
    background-color: #eff5f3;
    display: flex;
    opacity: .95;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    color: black;
    font-size: 20px;
    text-shadow: 0px 4px 4px rgba(55, 55, 55, 0.5);
}

.menu a:hover {
    color: #00B4D8;
    transform: scale(1.3);
    transition: transform 0.5s ease;
    text-shadow: 0px 2px 2px rgba(55, 55, 55, 0.3);
}

.procodinglogo {
    margin-right: 10px;
    height: 65px;
    width: 65px;
}

#logo_name {
    display: flex;
    align-items: center;
}


#logo_name h4 {
    text-align: center;
    margin: 0;
}

.content {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main {
    width: 80%;
    margin-top: 30px;
}

.headings {
    background-color: #e5f4ff;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    box-shadow: 0px 2px 2px rgba(141, 141, 141, 0.2);
}

.icons{
    margin-left: 50px;
    width: 40px;
    height: 40px;
}

.policyTitles{
    display: flex;
    align-items: center;
}

.headings h3 {
    margin-left: 20px;
    color: #000000;
}

.headings:hover {
    background-color: #b6e1fd;
    border-radius: 5px;
    transform: scale(1.02);
    transition: transform 0.7s ease;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

.headings.active {
    background-color: #b6e1fd;
    border-radius: 5px;
    transform: scale(1.0);
    transition: transform 0.7s ease;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

.plus {
    width: 30px;
    height: 30px;
    margin-right: 50px;
    cursor: pointer;
    display: block;
}

.minus {
    width: 30px;
    height: 30px;
    margin-right: 50px;
    cursor: pointer;
    display: none;
}

.show .plus {
    display: none;
}

.show .minus {
    display: block;
}

.policies {
    background-color: rgb(255, 255, 255);
    text-align: center;
    align-items: center;
    padding: 20px 100px;
    display: none;
    overflow: hidden;
    gap: 50px;
}

.policiesImg {
    width: 200px;
    height: 200px;
}

.policies.show {
    display: flex;
}

.policies p {
    text-align: justify;
}

#contact_dev_info {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.companylogo img {
    width: 250px;
}

#contactInfo {
    width: 40%;
    margin: auto;
    text-align: center;
}

#contactInfo span{
    font-weight: normal;
}

.footer {
    margin: 0;
    padding: 20px;
    background-color: #eff5f3;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.footer h2 {
    margin: 0;
    color: #00B4D8;
}

@media screen and (max-width: 600px) {
    .menu a {
        font-size: 15px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    }

    .menu a:hover {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }


    #contact_dev_info {
        width: 90%;
        display: flex;
        align-items: center;
    }

    #main {
        width: 90%;
        margin-top: 20px;
    }

    .header {
        padding: 0 10px;
    }

    .procodinglogo {
        margin-right: 5px;
        height: 30px;
        width: 30px;
    }

    .title h1 {
        font-size: 25px;
    }

    .headings h3{
        font-size: 17px;
    }

    .icons{
        margin-left: 20px;
        width: 30px;
        height: 30px;
    }

    .plus {
        margin-right: 20px;
    }

    .minus {
        margin-right: 20px;
    }

    .policies {
        padding: 5px 50px;
    }

    .policiesImg {
        width: 100px;
        height: 100px;
    }

    .policies.show {
        display: block;
    }

    .policies p{
        font-size: 13px;
    }

    #devInfo {
        font-size: 10px;
    }

    .companylogo img {
        width: 100px;
    }

    #contactInfo {
        width: 90%;
        font-size: 12px;
    }

    .footer h2 {
        font-size: 25px;
    }

}