.home .footer-wrapper {
    border-top: 0;
}

.footer-wrapper {
    padding-top: 31px;
    border-top: 1px solid #B2B8B9;
    background: #F5F5F5;
    color: #333;
}

.footer-top .block {
    margin-bottom: 30px;
}

.logo-footer {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;  
    align-items: center;      
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-top p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.footer-menu a:hover {
    color: #0454F2;
}

.social-footer span {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

.social-footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}

.social-footer ul li a {
    width: 28px;
    height: 28px;
    display: block;
    background-size: cover;
}

.footer-bottom {
    background: #0454F2;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: white;
}

.footer-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px; 
    margin-bottom: 10px;
    font-size: 17px;
}

.footer-contact p i {
    font-size: 16px;
    color: #333; 
}

.footer-contact p a {
    color: #333;
    text-decoration: none;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: 0.2s;
}

.social-icons img:hover {
  transform: scale(1.12);
  opacity: 0.85;
}

.gov-logo img {
  max-width: 150px;   
  height: auto;
  margin-top: 10px;
}

@media(max-width: 767px) {
    .footer-wrapper {
        padding-top: 30px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-top .block {
        text-align: left;
    }
}