body{
    margin: 0;
    padding: 0;  
}

.main-footer {
    background: #0a4049;
    color: #dcdcdc;
    padding: 30px 80px 30px 50px;
    font-family: 'Montserrat', sans-serif;
    /* width: 100%; */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 150px;
}

.footer-left {
    max-width: 500px;
}

.footer-left h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-right h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
    /* text-align: center; */
}

.footer-right a {
    display: block;
    text-decoration: none;
    color: #aaa;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.social-icons img{
    width: 30px;
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social{
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-footer {
        padding: 20px 30px 20px 30px;
    }
}