body {
    background-color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    padding: 20px;
}

.container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.left-side, .right-side {
    flex: 1;
    background-color: white;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

h2 {
    margin-top: 0;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #FF8C00;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #e07b00;
}

#rating-options {
    margin-bottom: 15px;
    padding-left: 10px;
}

#rating-options label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 2px 0;
    cursor: pointer;
    width: 100%;
}

#rating-options input[type="radio"] {
    width: auto;
    height: 16px;
    margin: 0;
    accent-color: #FF8C00;
    outline: none;
}

#rating-options input[type="radio"]:not(:checked) {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #FF8C00;
    border-radius: 50%;
    background: white;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    margin: -20px -20px 0;
    padding-left: 20px;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.hero {
    text-align: center;
    padding: 60px 20px 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .left-side, .right-side {
        padding: 20px;
        }

        body {
        padding: 12px;
    }
}