/* Footer Styling */
.footer {
    background-color: #404042;
    min-height: 440px;
    padding-top: 5.5rem;
    text-align: left; /* Align all footer text to the left */
}

.footer-content {
    max-width: 1200px;
    margin: 0; /* Remove auto margin to keep it left-aligned */
    padding-left: 8%; /* Optional: adds some padding to keep it from touching the edge */
}

.footer p {
    margin: 0;
    font-size: 14px;
}

/* Social Icons Styling */
.social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start; /* Align icons to the left */
    gap: 20px;
    font-weight: 400;
    font-family: "Font Awesome 5 Brands";
}

.social-icons a {
    text-decoration: none;
    color: #cacaca;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: white;
}

.social-icons i {
    font-size: 65px;
    transition: transform 0.3s ease;
    padding-right: 1.5rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer {
        padding: 15px;
    }

    .footer p {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 20px;
        margin: 0 10px;
    }

    .footer-content {
        margin-top: 20%;
    }
}

@media (max-width: 480px) {
    .social-icons a {
        font-size: 18px;
    }
}
