.main-footer {
    background-color: #343a40; /* 짙은 회색 */
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 50px; /* 본문과 간격 띄우기 */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-info h3 {
    color: #28a745; /* 포인트 컬러 */
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 0.9rem;
    color: #adb5bd;
    line-height: 1.6;
}

.footer-links h4 {
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #495057;
    font-size: 0.8rem;
    color: #868e96;
}