/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    min-width: 1440px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.2) 1px, transparent 1px),
        linear-gradient(0deg, rgba(7, 28, 81, 0.5), rgba(7, 28, 81, 0.5)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    background-size: 4px 4px, 100% 100%, 100% 100%;
    mix-blend-mode: normal;
}

/* Footer */
footer {
    background: #DEDEE8;
    height: 340px;
    display: flex;
    align-items: center;
}

.footer-container {
    width: 100%;
    padding: 0 120px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 54px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.footer-info {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #666;
    margin-bottom: 20px;
}

.copyright {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #666;
    margin-bottom: 20px;
}
