/* footer.css */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
    border-radius: 5px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.friend-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.friend-link {
    background-color: #34495e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.friend-link:hover {
    background-color: #4a647d;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.logo-container {
    margin-right: 20px;
    margin-bottom: 10px;
}

.logo-img {
    width: 80px;
    height: 80px;
}

.center-content {
    flex: 1;
    text-align: center;
    margin: 0 40px;
}

.center-content p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.8;
}

.center-content a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.center-content a:hover {
    text-decoration: underline;
}

.error-report {
    margin-left: 20px;
    margin-bottom: 10px;
}

.error-report img {
    width: 120px;
    height: 60px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bdc3c7;
}