* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

.header {
    position: sticky;
    opacity: 1;
    z-index: 10;
    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;
}

.nav-bar {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    position: absolute;
    right: 10px;
    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: #000000;
    transform: scale(1.3);
    transition: transform 0.5s ease;
    text-shadow: 0px 2px 2px rgba(55, 55, 55, 0.3);
}

.alltoolslogo {
    height: 65px;
    width: 65px;
    margin-right: 10px;
}

.title {
    font-size: 14px;
}

#logo_name {
    position: absolute;
    left: 10px;
    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;
}

@media (max-width: 1024px) {
    .policies {
        padding: 20px 10px;
    }
}

.policiesImg {
    width: 200px;
    height: 200px;
}

.policies.show {
    display: flex;
}


@media (max-width: 1024px) {
    .policies.show {
        flex-direction: column;
    }
}


.policies p {
    /* text-align: justify; */
    text-align: left;

}

#contact_dev_info {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.companylogo img {
    width: 250px;
}

#contactInfo {
    width: 100%;
    text-align: left;
    background-color: #e5f4ff;
    padding: 10px 0px;
}

.subList {
    text-align: left;
}

/* footer */
.footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;

    width: 100%;
    bottom: 0;
}

.footer-text {
    margin: 0;
}

@media (max-width: 500px) {
    .footer {
        font-size: 10px;
    }
}

@media screen and (max-width: 500px) {
    .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;
    }

    .alltoolslogo {
        margin-right: 5px;
        height: 30px;
        width: 30px;
    }

    .title h1 {
        font-size: 15px !important;
    }

    #logo_name {
        left: 5px;
    }

    #logo_name h4 {
        font-size: 12px;
    }


    .icons {
        margin-left: 20px;
        width: 30px;
        height: 30px;
    }

    .plus {
        margin-right: 20px;
    }

    .minus {
        margin-right: 20px;
    }

    .headings h3 {
        font-size: 17px;
    }

    .policies {
        padding: 5px 20px;
    }

    .policiesImg {
        width: 100px;
        height: 100px;
    }

    .policies.show {
        display: block;
    }

    .policies p {
        font-size: 13px;
    }

    #devInfo {
        font-size: 10px;
    }

    .subList {
        font-size: 13px;
    }

    .companylogo img {
        width: 100px;
    }

    #contactInfo {
        font-size: 12px;
    }

    .footer h2 {
        font-size: 25px;
    }

}