.area-links-container{
    background-color: #004277;
    padding: 20px 20px 80px 20px;
    flex-wrap: wrap;

}
.area-links {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    background-color: #004277;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.area-links li {
    flex: 1 1 0;
    min-width: 285px;
    max-width: 360px;
}



.area-links a {
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.5em;
    color: #555;
    text-decoration: none;
    background-color: #fff;
    padding: 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: block;
    transition: background-color 0.5s, color 0.3s, box-shadow 0.3s, transform 0.5s ease;
}
.intro-text {
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    color: #e6bc42;
    text-align: center;
    line-height: 1.6em !important;
    max-width: 1000px;
    margin: 0 auto 10px;
}
.area-links a:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}
.intro-bar {
    line-height: 2.2em;
    color: #fff;
    background-color: #004277;
    text-align: center;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom:10px;
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
  
}

@media only screen and (max-width: 768px) {

    .area-links{
        padding:10px;
    }
    .area-links li {
        min-width: 240px;
        max-width: 250px;
    }
    .area-links a {
    padding: 15px 15px;
    }
    .intro-text{
        padding: 0px 5px;
    }

}