.about_section{
    display: block;
    left: 0;
    right: 0;
     font-family: "Open Sans", sans-serif;
}

.about_section_section{
    margin: 0 auto;
    max-width: 1300px;
   margin: auto;
     display: flex;
   justify-content: space-between;

   align-items: flex-start;
   
}

.about_section_section .text_box{
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    color: #053a5c;
    margin: 17px;

}

.text_box ul {
    margin-top: -15px;
}

.text_box ul li{
    margin-left: 40px;
}

.about_section_section img{
    margin: 17px;
    height:auto;
    min-width: 50%;
}

@media(max-width: 1045px){
    .about_section_section{
        justify-content: center;
        align-items: center;
    }

    .about_section_section  img{
        width: 80%;
    }

    .about_section_section{
        flex-direction: column;
    }

    #about_section_section{
        flex-direction: column-reverse;
    }
    /* .about_section_section img{
        width: 400px;
        height: auto;
    } */
}

@media(max-width: 740px) {

}

.text_box h4{
    line-height: 1.9;
    
}

.text_box h5{
    font-size: 18px;
}

    .indented-list dt {
        font-weight: bold;

    }
    .indented-list dd {
        margin-left: 2em; /* Recuo do texto (ajuste conforme necessário) */
        margin-bottom: 1em; /* Espaço após o parágrafo */
        margin-top: -30px;
    }

/* Estilo para as caixas de política */
.box {
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    padding: 50px 20px;
    justify-content: center;
}

.pack_box {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 18px ;
    width: 480px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 4px solid #0c3152;
    transition: transform 0.3s ease;
}

.pack_box .title {
    color: #0c3152;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.pack_box a {
    text-decoration:none;
    background-color: #0c3152;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-top: auto;
    align-self: flex-end;
    transition: background-color 0.3s;
}

.pack_box button:hover {
    background-color: #1a4a7a;
}

/* Responsividade */
@media (max-width: 1200px) {
    .box {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .pack_box {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .pack_box {
        padding: 20px;
    }
    
    .pack_box .title {
        font-size: 16px;
    }
}