/* Footer Styles */
.footer-new {
    background-color: #2C4DC1;
    color: white;
    padding: 60px 0 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 400px;
    margin-bottom: 40px;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    line-height: 2.5;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    text-align: right;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 10px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.social-icons a {
    color: white;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .contact-info {
        text-align: left;
        margin-top: 40px;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

/* Back to Top Button */
#scrollTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #00A651;
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s;
}

#scrollTop:hover {
    opacity: 0.8;
}