@media only screen and (min-width: 320px) {

    .politica-seguridad-privacidad{
        padding: 30px 20px;
    }
    .politica-seguridad-privacidad h1{
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 20px;
    }
    .politica-seguridad-privacidad .content p {
    text-align: justify;
    text-align-last: left; /* solo afecta última línea */
    }
    /*Acordeon*/
    .accordion-container {
        grid-template-columns: 1fr;
    }

    .accordion-container {
        display: grid;
        gap: 1rem;
        padding: 40px 0 0px 0;
        align-items: start;
    }

    .accordion {
        border: 1px solid #ccc;
        border-radius: 5px;
        overflow: hidden;
    }

    .accordion-header {
        color:black;
        background-color: transparent;
        padding: 10px 20px;
        width: 100%;
        min-height: 56px;
        text-align: left;
        column-gap: 20px;
        cursor: pointer;
        position: relative;
        font-weight: bold;
        line-height: 16px;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .accordion-header > div{
        display: flex;
        align-items: center;
    }
    .accordion-header img{
        width: 18px;
        margin-right: 20px;
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: #fff;
        padding: 0 20px 0 20px;
    }

    .accordion-content p {
        margin: 1rem 0;
    }
    .accordion-content ul{
        margin-bottom: 0;
    }

    /* Flecha */
    .arrow {
        display: inline-block;
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        background-image: url(/sites/default/files/ucal25/icon-psp-arrow-green-v1.svg);
        background-size: cover;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    /* Estado abierto */
    .accordion.open .accordion-content {
        max-height: 500px;
        padding: 0 20px 20px 20px;
        /* ajusta según contenido */
    }

    .accordion.open .arrow {
        transform: rotate(-180deg);
    }

    /*FIN ACORDEON*/
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
    .politica-seguridad-privacidad h1{
        margin-bottom: 40px;
    }
    .politica-seguridad-privacidad{
        padding: 70px 0px;
    }
    /*
    .accordion-header {
        justify-content: center;
    }*/
    .accordion-header img{
        width: 22px;
    }
    .accordion-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {}