.site-footer {
  background-color: #132153;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
}

footer {
    background-color: #132153;
    color: #fff;
    padding: 40px 20px;
    position: relative;
    width: 100%;
    animation: fadeIn 2s ease-in-out;
     font-size: 15px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 16px;
}
.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    animation: slideIn 1s ease-in-out;
}
.footer-section h3 {
    border-bottom: 1px solid #9E8017;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #9E8017;
    font-weight: 400;
    /* font-size: 20px; */
}

.footer-section p a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.footer-section p a:hover {
    color: #9E8017;
    text-decoration: none;
}

.social-media a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s;
}
.social-media a:hover {
    color: #9E8017;
}
.map-container {
    width: 100%;
    height: 200px;
    margin-top: 20px;
}
.newsletter input[type="email"] {
    padding: 8px;
    width: calc(100% - 22px);
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #000;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #9E8017;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5px!important;
}
.newsletter button:hover {
    background-color: #777;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.sitemap ul {
  list-style-type: disc !important;
  margin-left: 20px !important;
  padding-left: 0 !important;
}

.sitemap ul ul {
  list-style-type: decimal !important;
  margin-left: 20px !important;
}

.sitemap ul ul ul {
  list-style-type: lower-alpha !important;
  margin-left: 20px !important;
}

.manage-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #132153;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    z-index: 99999;
}

.manage-btn:hover {
    opacity: 0.9;
}
