
.dilemma-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

label {
    font-weight: 600;
    color: #4e3b2c;
}

input[type="text"], select, textarea {
    border: 1px solid #b8a898;
    border-radius: 7px;
    padding: 0.7rem;
    font-size: 1rem;
    background: #f7f5f2;
    color: #222;
    font-family: 'Manrope', Arial, sans-serif;
    transition: border 0.2s;
}

input[type="text"]:focus, select:focus, textarea:focus {
    border-color: #924b4b;
    outline: none;
}

.your-ethical-dilemma {
    background: #f7f5f2;
    border: 1px solid #e0dedb;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(121, 83, 45, 0.06);
    padding: 1.2rem 1rem 1rem 1rem;
    margin-bottom: 1rem;
}

.your-ethical-dilemma h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #4e3b2c;
}

.secondary-message {
    color: #6d5c4d;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.dilemma-sample-box {
    background: #fff;
    border: 1px dashed #b8a898;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    color: #464444;
    font-size: 0.98rem;
}

.cta-button {
    width: 100%;
    display: block;
    margin: 1rem auto;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    border: 1px solid #ceccc9;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(90deg, #fff 0%, #696969 50%, #000 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(60, 50, 40, 0.06);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    background: linear-gradient(90deg, hsl(0, 0%, 6%) 0%, #494949 50%, hsl(0, 13%, 95%) 100%);

    box-shadow: 0 4px 16px rgba(60, 50, 40, 0.10);
}


@media (max-width: 600px) {
    main {
        padding: 1.2rem 0.5rem;
    }
}