body {

    background: #fff;

    font-family: 'Segoe UI', Arial, sans-serif;

    margin: 0;

    padding: 0;

}

.container {

    max-width: 500px;

    margin: 40px auto;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 2px 16px rgba(0,0,0,0.08);

    padding: 32px 24px 24px 24px;

    text-align: center;

}

.header {

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2.2rem;

    line-height: 2.235;

    font-weight: 700;

    margin-bottom: 30px;

}

.star {

    color: #FFC107;

    font-size: 2.5rem;

    margin-right: 10px;

}

.company {

    font-weight: 700;

    letter-spacing: 1px;

}

.contact-icons {

    display: flex;

    justify-content: center;

    gap: 24px;

    margin-bottom: 24px;

}

.icon {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eaeaea;

    transition: background 0.2s;

}

.icon img {

    width: 28px;

    height: 28px;

}

.icon svg {

    width: 28px;

    height: 28px;

    display: block;

    margin: 0 auto;

}

.icon.call { background: #2196F3; }

.icon.email { background: #9C27B0; }

.icon.whatsapp { background: #4CAF50; }

.feedback-title {

    font-size: 1.5rem;

    font-weight: 600;

    margin-bottom: 6px;

}

.feedback-desc {

    color: #888;

    margin-bottom: 18px;

}

.star-box {

    background: #f7f7f7;

    border-radius: 16px;

    padding: 24px 0 12px 0;

    margin-bottom: 18px;

}

.star-label {

    font-size: 1.1rem;

    margin-bottom: 10px;

}

.stars {

    font-size: 2.2rem;

    color: #ccc;

    cursor: pointer;

}

.stars span.selected,

.stars span.hover {

    color: #FFC107;

}

#formContainer {

    margin-top: 18px;

}

.form-group {

    margin-bottom: 20px;

    text-align: left;

}

.form-group label {

    font-weight: 500;

    margin-bottom: 8px;

    display: block;

    color: #333;

    font-size: 14px;

}

.form-group input,

.form-group textarea {

    width: 100%;

    padding: 12px 16px;

    border: 1px solid #ddd;

    border-radius: 4px;

    font-size: 14px;

    background: #fff;

    box-sizing: border-box;

    transition: border-color 0.2s;

}

.form-group input:focus,

.form-group textarea:focus {

    outline: none;

    border-color: #2196F3;

}

.form-group input::placeholder,

.form-group textarea::placeholder {

    color: #aaa;

    font-size: 14px;

}

.form-group textarea {

    min-height: 100px;

    resize: vertical;

    font-family: inherit;

}

.submit-btn {

    width: 100%;

    padding: 14px;

    background: #ccc;

    color: #fff;

    border: none;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 600;

    cursor: not-allowed;

    margin-top: 12px;

    transition: background 0.2s;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}

.submit-btn.active {

    background: #2196F3;

    cursor: pointer;

}

.required {

    color: #e74c3c;

}

@media (max-width: 600px) {

    .container {

        padding: 16px 4px 16px 4px;

    }

    .header {

        font-size: 1.3rem;

    }

    .star {

        font-size: 1.5rem;

    }

    .stars {

        font-size: 1.3rem;

    }

} 

@media only screen and (max-width: 767px) {
    .company-name {
        font-size: 1.5rem;
    }
    .review-container {
        max-width: 100% !important;
        width: 100% !important;
    }
    .review-container .powered {
        font-family: Roboto, Helvetica, Arial, sans-serif !important;
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        letter-spacing: 0.0093em !important;
        color: #fff !important;
        font-weight: 700 !important;
        text-align: center !important;
        width: 100% !important;
        bottom: 8rem !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .review-container {
        max-width: 100% !important;
        width: 100% !important;
    }
    .company-name {
        font-size: 1.5rem;
    }
    .review-container .powered {
        font-family: Roboto, Helvetica, Arial, sans-serif !important;
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        letter-spacing: 0.0093em !important;
        color: #fff !important;
        font-weight: 700 !important;
        text-align: center !important;
        width: 100% !important;
        bottom: 8rem !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

