:root {
    --gradient-colors: #1a1a2e, #16213e, #0f3460, #533483, #e94560;
    --accent-color: #e94560;
    --text-accent: #f8f1f1;
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.tqm-header-wrapper {
    background: linear-gradient(135deg, var(--gradient-colors));
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    animation: gradientShift 8s ease infinite;
    background-size: 300% 300%;
}

.tqm-header-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tqm-header-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
}

.tqm-header-logo:hover {
    color: var(--accent-color);
}

.tqm-header-list {
    display: flex;
    gap: 2rem;
}

.tqm-header-link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.tqm-header-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.tqm-header-link:hover::after {
    width: 100%;
}

.tqm-premium-wrapper {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../tqm-img/image-caffe-background-3.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 11rem;
}

.tqm-premium-container {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.tqm-premium-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.tqm-premium-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeIn 1.5s ease;
}

.tqm-premium-text i {
    margin: 0 0.5rem;
    color: var(--accent-color);
}

.tqm-premium-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease;
}

.tqm-premium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    width: 200px;
}

.tqm-premium-card:hover {
    transform: translateY(-10px);
    background: rgba(233, 69, 96, 0.2);
}

.tqm-premium-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.tqm-premium-card p {
    font-weight: 500;
}

.tqm-about-wrapper {
    min-height: 800px;
    background: linear-gradient(135deg, var(--gradient-colors));
    padding: 5rem 2rem;
    animation: gradientShift 8s ease infinite;
    background-size: 300% 300%;
}

.tqm-about-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 3rem;
    min-height: 600px;
}

.tqm-about-image {
    flex: 1;
    align-self: flex-start;
}

.tqm-about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInLeft 1s ease;
}

.tqm-about-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInRight 1s ease;
}

.tqm-about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tqm-about-text {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tqm-welcome-wrapper {
    min-height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../tqm-img/image-caffe-background-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.tqm-welcome-container {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.tqm-welcome-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.tqm-welcome-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease;
}

.tqm-welcome-text i {
    margin: 0 0.5rem;
    color: var(--accent-color);
}

.tqm-benefits-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gradient-colors));
    padding: 5rem 2rem;
    animation: gradientShift 8s ease infinite;
    background-size: 300% 300%;
}

.tqm-benefits-container {
    max-width: 1380px;
    margin: 0 auto;
}

.tqm-benefits-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    animation: fadeInDown 1s ease;
}

.tqm-benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    animation: fadeIn 1s ease;
}

.tqm-benefits-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    width: calc(33.333% - 2rem);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.tqm-benefits-card:hover {
    transform: translateY(-10px);
}

.tqm-benefits-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tqm-benefits-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tqm-benefits-card p {
    color: var(--text-dark);
}

.tqm-subscribe-wrapper {
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../tqm-img/image-caffe-background-4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.tqm-subscribe-container {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    width: 100%;
}

.tqm-subscribe-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.tqm-subscribe-form {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.tqm-subscribe-input {
    position: relative;
    margin-bottom: 1.5rem;
}

.tqm-subscribe-input input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}

.tqm-subscribe-input i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
}

.tqm-subscribe-checkbox {
    margin-bottom: 1.5rem;
    text-align: left;
    padding-left: 1rem;
}

.tqm-subscribe-checkbox a {
    color: var(--accent-color);
    text-decoration: underline;
}

.tqm-subscribe-input, 
.tqm-subscribe-checkbox {
  transition: all 0.3s ease;
}

.tqm-subscribe-button {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.tqm-subscribe-button:not(:disabled) {
  animation: pulse 2s infinite;
}

.tqm-subscribe-button:not(:disabled):hover {
    background: var(--text-dark);
}

.tqm-subscribe-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tqm-subscribe-error {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.tqm-subscribe-input.invalid input {
    border-color: var(--accent-color);
}

.tqm-subscribe-input.invalid .tqm-subscribe-error {
    display: block;
}

.tqm-subscribe-checkbox.invalid {
    color: var(--accent-color);
}

#tqm-subscribe-success-unique {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    position: relative;
    color: var(--text-light);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.tqm-subscribe-success {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    position: relative;
    display: none;
    animation: fadeIn 0.5s ease;
}

.tqm-subscribe-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.tqm-superior-wrapper {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--gradient-colors));
    padding: 5rem 2rem;
    animation: gradientShift 8s ease infinite;
    background-size: 300% 300%;
}

.tqm-superior-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tqm-superior-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInDown 1s ease;
}

.tqm-superior-text {
    max-width: 800px;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    animation: fadeIn 1.5s ease;
}

.tqm-superior-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease;
}

.tqm-reviews-wrapper {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../tqm-img/image-caffe-background-2.jpg') center/cover no-repeat;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
}

.tqm-reviews-container {
    max-width: 1380px;
    margin: 0 auto;
    width: 100%;
}

.tqm-reviews-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    animation: fadeInDown 1s ease;
}

.tqm-reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.tqm-reviews-slide {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    display: none;
    box-shadow: var(--shadow);
}

.tqm-reviews-slide.active {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.tqm-reviews-slide img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.tqm-reviews-content {
    flex: 1;
    text-align: left;
}

.tqm-reviews-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tqm-reviews-content span {
    display: block;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 500;
}

.tqm-reviews-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tqm-reviews-content i {
    color: var(--accent-color);
    font-size: 2rem;
}

.tqm-reviews-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.tqm-reviews-prev, .tqm-reviews-next {
    background: var(--accent-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
}

.tqm-reviews-prev:hover, .tqm-reviews-next:hover {
    background: var(--text-dark);
}

.tqm-faq-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gradient-colors));
    padding: 5rem 2rem;
    animation: gradientShift 8s ease infinite;
    background-size: 300% 300%;
}

.tqm-faq-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.tqm-faq-section, .tqm-feedback-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tqm-faq-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.tqm-faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.tqm-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.tqm-faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.tqm-faq-question i {
    color: var(--accent-color);
    transition: var(--transition);
}

.tqm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-dark);
}

.tqm-faq-answer p {
    padding-bottom: 1rem;
}

.tqm-faq-item.active .tqm-faq-question i {
    transform: rotate(45deg);
}

.tqm-faq-item.active .tqm-faq-answer {
    max-height: 500px;
}

.tqm-feedback-section {
    max-width: 100%;
    padding: 2.5rem;
    margin: 2rem auto;
    background: linear-gradient(135deg, var(--gradient-colors));
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: gradientShift 8s ease infinite;
    background-size: 300% 300%;
    color: var(--text-light);
}

.tqm-contact-info {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.tqm-contact-info p {
    margin: 0.3rem 0;
}

.tqm-contact-info a {
    color: var(--accent-color);
    text-decoration: underline;
}

.tqm-contact-info a:hover {
    text-decoration: none;
}

.tqm-feedback-title {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1rem;
}

.tqm-feedback-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.tqm-feedback-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tqm-feedback-input {
    position: relative;
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.tqm-feedback-input input,
.tqm-feedback-input textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tqm-feedback-input textarea {
    min-height: 150px;
    resize: vertical;
}

.tqm-feedback-input input::placeholder,
.tqm-feedback-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.tqm-feedback-input input:focus,
.tqm-feedback-input textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.3);
}

.tqm-feedback-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.tqm-feedback-error {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.tqm-feedback-input.invalid input,
.tqm-feedback-input.invalid textarea {
    border-color: var(--accent-color);
    animation: shake 0.5s ease;
}

.tqm-feedback-input.invalid .tqm-feedback-error {
    display: block;
}

.tqm-feedback-checkbox {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.tqm-feedback-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.tqm-feedback-checkbox label {
    position: relative;
    cursor: pointer;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.tqm-feedback-checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tqm-feedback-checkbox input[type="checkbox"]:checked + label::before {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.tqm-feedback-checkbox input[type="checkbox"]:checked + label::after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.8rem;
}

.tqm-feedback-checkbox a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.tqm-feedback-checkbox a:hover {
    text-decoration: none;
}

.tqm-feedback-checkbox.invalid {
    color: var(--accent-color);
    animation: shake 0.5s ease;
}

.tqm-feedback-checkbox.invalid label::before {
    border-color: var(--accent-color);
}

.tqm-feedback-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tqm-feedback-button:not(:disabled):hover {
    background: #d43f6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.tqm-feedback-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.tqm-button-text {
    display: inline-block;
    transition: all 0.3s ease;
}

.tqm-spinner {
    display: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

.tqm-feedback-success {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.tqm-feedback-success[hidden] {
    display: none;
}

.tqm-feedback-success.show {
    transform: translateY(0);
    opacity: 1;
}

.tqm-feedback-success p {
    margin: 0;
    padding-right: 1.5rem;
}

.tqm-feedback-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.tqm-feedback-close:hover {
    color: var(--accent-color);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tqm-footer-wrapper {
    background: var(--text-dark);
    padding: 3rem 2rem;
    color: var(--text-light);
}

.tqm-footer-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tqm-footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.tqm-footer-links a {
    transition: var(--transition);
}

.tqm-footer-links a:hover {
    color: var(--accent-color);
}

.tqm-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-light);
    padding: 1rem 2rem;
    z-index: 1001;
    display: flex;
    justify-content: center;
    animation: slideInUp 0.5s ease;
}

.tqm-cookie-content {
    max-width: 1380px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.tqm-cookie-content p {
    margin-bottom: 0;
}

.tqm-cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.tqm-cookie-accept {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.tqm-cookie-accept:hover {
    background: var(--text-light);
    color: var(--accent-color);
}

.tqm-scroll-top {
    position: fixed;
    left: 2rem;
    bottom: 280px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.tqm-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.tqm-scroll-top:hover {
    background: var(--text-dark);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .tqm-header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tqm-header-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tqm-premium-title {
        font-size: 3rem;
    }

    .tqm-about-container {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }

    .tqm-about-image, .tqm-about-content {
        align-self: center;
    }

    .tqm-benefits-card {
        width: calc(50% - 2rem);
    }

    .tqm-faq-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .tqm-premium-title {
        font-size: 2.5rem;
    }

    .tqm-premium-cards {
        flex-direction: column;
        align-items: center;
    }

    .tqm-premium-card {
        width: 100%;
        max-width: 300px;
    }

    .tqm-benefits-card {
        width: 100%;
        max-width: 400px;
    }

    .tqm-reviews-slide.active {
        flex-direction: column;
        text-align: center;
    }

    .tqm-reviews-slide img {
        margin-bottom: 1rem;
    }

    .tqm-feedback-section {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .tqm-feedback-title {
        font-size: 1.8rem;
    }
    
    .tqm-feedback-form {
        padding: 1rem;
    }

    .tqm-footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .tqm-footer-links {
        flex-direction: column;
        gap: 1rem;
    }

}

@media (max-width: 480px) {
    .tqm-header-list {
        gap: 1rem;
    }

    .tqm-premium-title {
        font-size: 2rem;
    }

    .tqm-about-content {
        padding: 2rem 1rem;
    }

    .tqm-faq-section {
        padding: 2rem 1rem;
    }

    .tqm-feedback-section {
        padding: 1rem;
    }
    
    .tqm-feedback-title {
        font-size: 1.5rem;
    }
    
    .tqm-feedback-input input,
    .tqm-feedback-input textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
    
    .tqm-feedback-input i {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .tqm-feedback-checkbox {
        margin: 1.5rem 0;
    }

    .tqm-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tqm-scroll-top {
        left: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .tqm-header-logo {
        font-size: 1.5rem;
    }

    .tqm-header-link {
        font-size: 0.9rem;
    }

    .tqm-premium-title {
        font-size: 1.8rem;
    }

    .tqm-faq-title, .tqm-contact-title {
        font-size: 2rem;
    }
}

.tqmpg-privacy-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--gradient-colors));
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    animation: gradientShift 8s ease infinite;
    background-size: 300% 300%;
}

.tqmpg-hero-container {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.tqmpg-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.tqmpg-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.tqmpg-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tqmpg-hero-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tqmpg-hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tqmpg-hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.tqmpg-icon-item {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.tqmpg-icon-item:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

.tqmpg-policy-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.tqmpg-policy-container {
    max-width: 1380px;
    margin: 0 auto;
}

.tqmpg-policy-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.tqmpg-policy-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.tqmpg-policy-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.tqmpg-policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tqmpg-policy-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tqmpg-item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tqmpg-item-text {
    color: var(--text-dark);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tqmpg-privacy-hero {
        padding: 13rem 1.5rem;
        min-height: 50vh;
    }
    
    .tqmpg-hero-title {
        font-size: 2.5rem;
    }
    
    .tqmpg-hero-text {
        font-size: 1.1rem;
    }
    
    .tqmpg-policy-section {
        padding: 3rem 1.5rem;
    }
    
    .tqmpg-policy-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tqmpg-hero-title {
        font-size: 2rem;
    }
    
    .tqmpg-hero-icon {
        font-size: 3rem;
    }
    
    .tqmpg-icon-item {
        font-size: 2rem;
    }
    
    .tqmpg-policy-item {
        padding: 1.5rem;
    }
    
    .tqmpg-item-title {
        font-size: 1.3rem;
    }
}

.tqmpg-cookie-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--gradient-colors));
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    animation: gradientShift 8s ease infinite;
    background-size: 300% 300%;
    color: var(--text-light);
}

.tqmpg-hero-container {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
}

.tqmpg-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.tqmpg-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.tqmpg-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tqmpg-hero-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tqmpg-hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tqmpg-hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.tqmpg-icon-item {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.tqmpg-icon-item:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

.tqmpg-policy-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.tqmpg-policy-container {
    max-width: 1380px;
    margin: 0 auto;
}

.tqmpg-policy-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.tqmpg-policy-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.tqmpg-policy-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.tqmpg-policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tqmpg-policy-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tqmpg-item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tqmpg-item-text {
    color: var(--text-dark);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tqmpg-cookie-hero {
        padding: 13rem 1.5rem;
        min-height: 50vh;
    }
    
    .tqmpg-hero-title {
        font-size: 2.5rem;
    }
    
    .tqmpg-hero-text {
        font-size: 1.1rem;
    }
    
    .tqmpg-policy-section {
        padding: 3rem 1.5rem;
    }
    
    .tqmpg-policy-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tqmpg-hero-title {
        font-size: 2rem;
    }
    
    .tqmpg-hero-icon {
        font-size: 3rem;
    }
    
    .tqmpg-icon-item {
        font-size: 2rem;
    }
    
    .tqmpg-policy-item {
        padding: 1.5rem;
    }
    
    .tqmpg-item-title {
        font-size: 1.3rem;
    }
}