    .container {

        max-width: 700px;

        margin: 0 auto;

        padding: 20px;

        background-color: #fff;

        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        border-radius: 10px;

        border: 1px solid #dcdcdc;

        background: linear-gradient(to bottom right, #b5a8a8, #ffffff, #9e9e9e);

    }



    .header {

        text-align: center;

        margin-bottom: 20px;

    }



    .header img {

        max-width: 200px;

        height: auto;

    }



    h2 {

        color: #d32f2f;

        text-align: center;

        margin-bottom: 20px;

        font-family: 'Open Sans', Arial, sans-serif;

        font-weight: 600;

    }



    .form-group {

        margin-bottom: 20px;

    }



    .form-group label {

        display: block;

        margin-bottom: 5px;

        color: #333;

        font-weight: 600;

        font-family: 'Open Sans', Arial, sans-serif;

        position: relative;

    }



    .form-inline {

        display: flex;

        flex-wrap: wrap;

        gap: 15px;

        justify-content: space-between;

    }



    .form-inline .form-group {

        flex: 1;

        min-width: calc(33% - 10px);

    }





    .form-group textarea {

        /* width: 90%; */

        padding: 10px;

        border: 1px solid #ddd;

        border-radius: 5px;

        resize: vertical;

        min-height: 100px;

        font-family: 'Open Sans', Arial, sans-serif;

        text-align:center !important;

    }



    .form-group input[type="submit"] {

        display: block;

        width: 100%;

        padding: 10px;

        background-color: #d32f2f;

        color: #fff;

        border: none;

        border-radius: 5px;

        cursor: pointer;

        transition: background-color 0.3s;

        font-family: 'Open Sans', Arial, sans-serif;

    }



    .form-group input[type="submit"]:hover {

        background-color: #b71c1c;

    }



    .form-group .options {

        display: flex;

        flex-wrap: nowrap;

        gap: 15px;

        justify-content: center;

    }



    .form-group .options label {

        display: flex;

        flex-direction: column;

        align-items: center;

        padding: 10px;

        cursor: pointer;

        transition: color 0.3s, transform 0.3s;

        font-family: 'Open Sans', Arial, sans-serif;

        flex: 1 1 calc(33.33% - 15px); /* 3 items per row */

        max-width: calc(33.33% - 15px); /* Adjust for gap */

    }



    .form-group .options label:hover {

        color: #d32f2f;

    }



    .form-group .options input[type="radio"] {

        display: none;

    }



    .form-group .options input[type="radio"]:checked + label {

        color: #d32f2f;

    }



    .form-group .options label:hover .smiley {

        transform: scale(1.5) rotate(360deg);

        color: #d32f2f;

        transition: transform 0.6s, color 0.3s;

    }



 

    .smiley {

        font-size: 24px;

        margin-bottom: 5px;

        transition: transform 0.3s, color 0.3s;

        width: 35px;

    }

   .smiley img{

    width:40px;

   }

   

   /* @media (max-width: 768px) {

    .form-group .options label {

        flex: 1 1 calc(50% - 15px);

        max-width: calc(50% - 15px);

    }

} */

@media (max-width: 768px) {

    .form-group .options {

        display: grid;

        grid-template-columns: repeat(3, 1fr); /* Three items per row */

        gap: 15px; /* Space between items */

    }



    /* Ensure the first three items are in the first row */

    .form-group .options label:nth-child(-n+3) {

        grid-column: span 1; /* Each of the first three items spans one column */

    }



    /* Ensure the last two items are in the second row */

    .form-group .options label:nth-child(n+4) {

        grid-column: span 1; /* Each of the remaining items spans one column */

    }



    .smiley img {

        width: 50px; /* Adjust smiley size for smaller screens */

    }

}

@media (max-width: 480px) {

    .form-group .options label {

        flex: 1 1 100%; 

        max-width: 100%;

    }

}



@media (max-width: 375px) {

    .form-group .options {

        display: grid;

        grid-template-columns: repeat(3, 1fr); /* Three items per row */

        gap: 15px;

    }



    /* Ensure the first three items are in the first row */

    .form-group .options label:nth-child(-n+3) {

        grid-column: span 1;

    }



    /* Ensure the last two items are in the second row */

    .form-group .options label:nth-child(n+4) {

        grid-column: span 1; 

    }



    .smiley img {

        width: 50px; 

    }

}

