nav a {
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #212529;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
nav a:hover {
    background-color: #2e3192;
    color: white;
}
a:hover {
    color: #2e3192;
}
nav a span {
    background-color: #2e3192;
}
.button-primary {
    background-color: #2e3192;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.button-primary:hover {
    background-color: #00adef;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.button-secondary {
    background-color: white;
    color: #2e3192;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.button-secondary:hover {
    background-color: #00adef;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.tab {
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.tab:hover {
    background-color: #3871c1;
}
#complianceModal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 50;
}
#complianceModal.hidden {
    display: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.contact-info {
    padding: 1rem;
}
.contact-info i {
    margin-right: 10px;
}
@media (max-width: 768px) {
    .contact-info {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
   }
    .contact-info p {
        justify-content: flex-start;
        text-align: left;
   }
}
@media (max-width: 640px) {
    .logonav {
        height: 2.5rem;
   }
}
button[type="submit"] {
    background-color: #2e3192;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
    background-color: #00adef;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.grid {
    display: grid;
    grid-auto-rows: auto;
    gap: 20px;
    justify-items: center;
    justify-content: center;
}
#logo-container {
    padding: 20px 0;
}
.location-card {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
a.button-primary {
    background-color: #2e3192;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: normal;
}
a.button-primary:hover {
    background-color: #00adef;
    color: white;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
.map-content iframe {
    height: 400px;
}
#contactForm {
    background-color: transparent;
    transition: background-color 0.5s ease;
    border-radius: 8px;
}
#contactForm.completed {
    background-color: #2e3192;
}
#contactForm input {
    background-color: #2e3192;
    color: white;
    border: 2px solid #3871c1;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 12px;
    color: white;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.btn-input:hover {
    background-color: #3871c1;
    color: white;
}
#successMessage {
    color: #fff;
}
a {
    transition: background-color 0.5s;
}
a:hover {
    color: #00adef;
}
@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(-100%);
   }
}
.animate-infinite-scroll {
    display: flex;
    animation: infinite-scroll 30s linear infinite;
}
.overflow-hidden {
    overflow: hidden;
}
ul.carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}
li.carousel {
    list-style: none;
}
.article-list {
    margin-bottom: 30px;
}
.article-card {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
}
.article-title {
    font-size: 1.5rem;
    font-weight: light;
}
.article-date {
    font-size: 0.9rem;
}
.article-content {
    font-size: 1rem;
    margin-top: 10px;
}
nav#nav-menu a:hover span {
    transform: scaleX(1);
    transform-origin: left;
}
nav#nav-menu a span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00adef;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.contactforminput {
    background-color: white;
}
