
main {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}
section {
    background-color: #fff;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    min-height:20vh ;
}
.agency div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 0px 15px ;
    gap: 7px;
    text-align: center;
}
.agency div h1{
    font-weight: 400;
}
.agency div img {
    width: 70px;
    height: 70px;
}
section .containerHeader {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
section .containerHeader h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 8px;
    text-align: center;
}
th {
    background-color: var(--primary-color);
    color: #fff;
}
ul {
    padding-right: 30px;
}