@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");


.main-footer {
    background-color: #1a1a1a; 
    color: #ffffff;
    padding-top: 60px;
    font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
    padding: 0 15px;
}


.footer-logo img {
    height: 96px;
    margin-bottom: 30px;
}


.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
}


.footer-title.border-left {
    padding-left: 15px;
    border-left: 3px solid #4ead5d;
}


.footer-title.underline::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #4ead5d;
    margin-top: 10px;
}


.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 300px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4ead5d;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 15px;
}


.social-col {
    flex: 0 0 auto;
}

.social-vertical-bar {
    background-color: rgba(217, 217, 217, 0.15);
    padding: 15px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.social-vertical-bar li {
    list-style: none;
}

.social-vertical-bar img {
    width: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-vertical-bar img:hover {
    opacity: 1;
}


.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 700;
    color: #4ead5d;
    margin: 0;
}


@media (max-width: 768px) {
    .footer-grid {
   flex-wrap: wrap;
        gap: 40px 20px;
        align-items: center;
    }
    .footer-col {
        flex: 0 0 45%;
    }
    .social-col {
       
        width: 100%;
        display: flex;
    
    }
    .social-vertical-bar {
        flex-direction: row;
    }
}
@media (max-width: 530px) {
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
}
}