/* CACHE-BUSTER-20250327-155923 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 3px;
}

*::-webkit-scrollbar-track {
    background: #ffffff00;
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb {
    background: #E2E2E2;
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #E2E2E2;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #E2E2E2 #f1f1f100;
}

body {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    padding: 0;
    background: #F0F5F8;

}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
   font-weight: 600;
}

h1 {
    font-size: 40px;

}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
} 

p {
    color: #000000;
}

a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
a:hover {
    color: #2B323A;
}

ul {
    list-style-type: none;
}

ol {
    list-style-type: decimal;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, textarea, select {
    font-family: 'Pretendard', sans-serif;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}