* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Footer_footer {
    background-color: #3a3a3a;
    color: #ffffff;
    padding: 40px 20px;
    width: 100%;
}

.Footer_footerContainer {
    max-width: 1400px;
    margin: 0 auto;
}

.Footer_footerWrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.Footer_footerFirst {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.Footer_footerFirst p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    flex: 0 1 auto;
    font-weight: bold;
}

.Footer_footerFirst h2 {
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.Footer_footerLast {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.Footer_footerLast p {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.6;
    font-weight: bold;
}

.Footer_footerLast div {
    display: flex;
    gap: 30px;
}

.Footer_footerLast a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.Footer_footerLast a:hover {
    color: #64b5f6;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .Footer {
        display: block;
    }
    
    .Footer_footerWrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .Footer_footerFirst {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .Footer_footerFirst h2 {
        font-size: 28px;
    }
    
    .Footer_footerLast {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .Footer_footerLast a {
        margin-left: 0;
        margin-right: 20px;
    }
}