.footer {
    background-color: #34495e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-image: none;
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-logo-section {
    margin-top: 10px;
}

.footer-copyright {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-tagline {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
}

.footer-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom:10px;
}

.footer-actions .btn {
    min-width: 140px;
}

.footer-social a {
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .footer-content {
        padding: 20px;
    }

    .footer-actions {
        flex-direction: column;
        gap: 10px;
    }

    .footer-actions .btn {
        width: 100%;
    }
}
