footer {
    background-color: #222;
    color: #eee;
    text-align: center;
    padding: 40px 0;
    bottom: 0;
    width: 100%;
    font-family: 'Arial', sans-serif;
    cursor: default;
}

.footer-boxs {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.box {
    width: 250px;
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.box h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #fff;
}

.box p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #ccc;
}

.box ul {
    list-style: none;
    padding: 0;
}

.box li {
    margin-bottom: 8px;
}

.box a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.box a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 15px;
}

.social-links img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.social-links img:hover {
    transform: scale(1.1);
}

.button {
    display: inline-block;
    background-color: #555;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.2s ease-in-out;
}

.button:hover {
    background-color: #777;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    position: relative;
}

.footer-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: calc(100% + 100px);
    border-top: 1px solid #444;
}

.footer-content p {
    line-height: 1.4;
    font-size: 0.85em;
    color: #888;
    margin-bottom: 0;
    cursor: default;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-boxs {
        flex-direction: column;
        align-items: center;
    }

    .box {
        width: 80%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
