#page-apropos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    padding: 0 2rem;
    max-width: 80%;
    margin: 0 auto;

    .photo {
        display: flex;
        justify-content: center;
        padding-bottom: 1.5rem;

        img {
            width: 100%;
            height: 100%;
            max-width: 350px;
            max-height: 350px;
            border-radius: 50%;
        }
    }

    .text-container {       
        
        margin: 0 auto;

        .slogan {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            font-style: italic;
            font-weight: bold;
            color: #5c1c1c;
            
        }

        .description {    
            margin-bottom: 3rem;       
            p {
                line-height: 1.7rem;
            }
        }

        .big-text1, .big-text2, .container-expositions {
            
            h3 {
                font-size: 1.1rem;
                font-weight: bold;
                color: #5c1c1c;

            }
            p {
                line-height: 1.5rem;
                text-align: justify;
                padding: 0.5rem 0;
            }
            
            p:last-of-type {
                margin-bottom: 2rem;
            }
        } 
        
        .container-expositions {
            margin-bottom: 5rem;
            display: flex;
            flex-direction: column;
            gap: 5rem;

            .exposition {
                display: flex;
                flex-direction: column;
                gap: 2rem;
                p {
                    display: flex; /* Usar flexbox para alinear el punto y el texto */
                    align-items: start; /* Centrar verticalmente */
                    padding: 0 1rem;
                    line-height: 1.6rem;
                    margin: 0;
                    
                }
            }

            .exposition p::before {
                content: "•";
                color: #5c1c1c; 
                font-size: 3rem;
                margin-right: 0.5rem; /* Espacio entre el punto y el texto */
                line-height: 1rem;
            }

            .legal-info {
                p:nth-child(1) {
                    font-weight: bold;
                }
            }
        }
    }
}

@media screen and (max-width: 700px) {
    #page-apropos {

        .photo {
            img {
                max-width: 300px;
                max-height: 300px;
            }
        }
        .text-container {
            .slogan {
                line-height: 1.3rem;
                font-size: 1rem;
            }
            .big-text2 {
                h3 {
                    line-height: 1.3rem;
                }
            }
        }
        
    }
}

@media screen and (max-width: 600px) {
    #page-apropos {
        max-width: 100%;
        padding: 0 1rem;

        .photo {
            img {
                max-width: 250px;
                max-height: 250px;
            }
        }

        .text-container {
            .big-text1, .big-text2, .container-expositions {
                h3 {
                    font-size: 1rem;
                }
                p {
                    font-size: 0.9rem;
                }
            }
            .container-expositions {
                .exposition {
                    p {
                        padding: 0;
                    }
                }
            }
        }
    }
}
