/* General styles for larger screens */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

/* Privacy Policy Page Styles */
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff; /* White background for the content area */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 8px; /* Rounded corners for a smooth look */
    font-family: Arial, sans-serif;
}

h1.privacy-title {
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
    font-size: 2.5em;
}

h2.privacy-heading {
    color: #007BFF; /* Primary color for subheadings */
    margin-top: 30px;
    font-size: 1.8em;
    border-bottom: 2px solid #f5b301; /* Bottom border to separate sections */
    padding-bottom: 10px;
}

p.privacy-text, ul.privacy-list, ol.privacy-list {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

ul.privacy-list, ol.privacy-list {
    padding-left: 20px;
}

.privacy-list li {
    margin-bottom: 10px;
}

.privacy-container a {
    color: #007BFF; /* Link color */
    text-decoration: none;
}

.privacy-container a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #999999;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.review-button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.2s ease-in-out;
}

.review-button:hover {
    background-color: #0056b3;
}

.thankyou-text {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
}

.review-link {
    display: block;
    text-align: center;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    margin: 20px auto;
    width: fit-content;
}

.review-link:hover {
    background-color: #0056b3;
}

.intro-text {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin: 30px auto;
    max-width: 1000px;
    text-align: center;
}

.rating-container {
    text-align: center;
    margin-bottom: 20px;
}

.star-rating {
    display: inline-flex;
    direction: rtl;
    justify-content: center;
    margin-top: 10px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 3em;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.star-rating input[type="radio"]:checked ~ label {
    color: #f5b301;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f5b301;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1, h2 {
    color: #333;
    text-align: center;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 20px;
    color: #555;
    text-align: center;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-size: 16px;
}

button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
}

#qrcode {
    text-align: center;
    margin-top: 20px;
}

/* Feedback Form Container */
.feedback-form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 50px auto;
}

.feedback-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #333;
}

.feedback-form-container label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #555;
    font-size: 1em;
}

.feedback-form-container input[type="text"],
.feedback-form-container input[type="email"],
.feedback-form-container input[type="tel"],
.feedback-form-container textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.feedback-form-container input[type="text"]:focus,
.feedback-form-container input[type="email"]:focus,
.feedback-form-container input[type="tel"]:focus,
.feedback-form-container textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.feedback-form-container textarea {
    height: 120px;
    resize: vertical;
}

.feedback-form-container button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center; /* Center text in button */
}

.feedback-form-container button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Center buttons in forms */
.form-container {
    text-align: center;
    margin-top: 20px;
}

.form-container button {
    display: inline-block;
    margin: 10px;
}
