#privacy-policy {
    width: 80%;
}

#privacy-policy h2 {
    text-align: center;
    margin-bottom: 20px;
    color: green !important;

}

#privacy-policy h3 {
    margin-top: 30px;
    color: lightgreen;
    font-style: italic;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 1px;
}

#privacy-policy p {
    line-height: 1.6;
    color: black;
    -webkit-text-stroke: 0 !important;
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}


section img {
    margin-bottom: 15px;
    width: 25%;
}

main p {
    font-size: 15px;
    font-weight: bolder;
    color: black !important;
    -webkit-text-stroke: none;
}
main h2 {
    font-size: 30px;
    color: #00ff00;
    text-shadow: 2px 2px 4px #000000;
}

section {
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

section img {
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 20px rgba(0, 0, 0, 0.1);
}

main p {
    font-size: 18px;
    color: #333333;
    line-height: 1.5;
    transition: all 0.3s ease-in-out;
}

#logo_link {
    text-decoration: none;
    background-color: transparent !important;
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
    #privacy-policy {
        width: 120%;
    }
    main p {
        font-size: 5dvw !important;
    }
}

main p:hover {
    color: #00ff00;
    text-shadow: 2px 2px 4px #000000;
}

section img:hover {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3), 0px 0px 25px rgba(0, 0, 0, 0.2);
}
    main p {
        font-size: 1.5dvw;
    }
    main h2 {
        font-size: 20px;
    }
    main section {
        margin-bottom: 15px;
        width: 100%;
    }

 
