.contact-section {
    max-width: 800px;
    margin: 70px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
}

.contact-section h2 {
    font-size: 32px;
    color: #6b1787;
    margin-bottom: 10px;
}

.contact-section p {
    color: #555;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-info div {
    margin: 10px;
}

.contact-info h3 {
    color: #6b1787;
    margin-bottom: 5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;
}

.contact-form button {
    background-color: #6b1787;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #5a126f;
}

img {
    width: 800px;
}

.main-banner {
    margin-top: 64px;
    background: url('/img/test33.png') center/cover no-repeat;
    height: clamp(300px, 40vw, 600px);
}