.sim_aga {
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 70px auto;
    padding: 40px;
    background-color: #edf3f3;
    border-radius: 16px;
}
.sim_aga .container {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.sim_aga h1 {
    color: #58bca3;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}
@media (max-width: 768px) {
    .sim_aga h1 {
        font-size: 22px;
    }
}
.sim_aga .form-group {
    margin-bottom: 25px;
}
.sim_aga label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
}
.sim_aga select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
}
.sim_aga button, .sim_aga input[type="submit"] {
    background-color: #58bca3;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}
.sim_aga button:hover, .sim_aga input[type="submit"]:hover {
    background-color: #2980b9;
}
.sim_aga .baldness-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    margin-top: 15px;
}
.sim_aga .baldness-type {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    background-color: #fff;
}
.sim_aga .baldness-type img {
    max-width: 50%;
    height: auto;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .sim_aga .baldness-type img {
        max-width: 100%;
    }
}
.sim_aga .baldness-type input[type="radio"] {
    display: none;
}
.sim_aga .baldness-type.selected {
    border: 1px solid #58bca3;
    box-shadow: 0 0 6px rgba(0, 0, 0, .2);
    color: #58bca3;
}
.sim_aga .error {
    color: #e74c3c;
    margin-top: 5px;
    display: none;
}
.sim_aga .or-separator {
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
    color: #7f8c8d;
}
.sim_aga .info-text {
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 5px;
}