
body {
    font-family: 'Gowun Dodum', sans-serif;
    background-color: #fdfaf6;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    color: #e87a90;
    font-size: 2.5rem;
}

h2 {
    color: #5d5d5d;
    border-bottom: 2px solid #fce8eA;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

#captcha-section {
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
}

#review-form-section {
    background-color: #fff8f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #fce8ea;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-family: 'Gowun Dodum', sans-serif;
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: #e87a90;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Gowun Dodum', sans-serif;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #d96a7f;
}

.stars {
    cursor: pointer;
    margin-bottom: 20px;
}

.star {
    font-size: 2rem;
    color: #ccc;
    display: inline-block;
    transition: color 0.2s;
}

.star:hover,
.star.selected {
    color: #ffd700;
}

#reviews-section {
    margin-top: 40px;
}
