@font-face {
  font-family: 'Rozha One';
  src: url('../tvz-fonts/RozhaOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tiro Devanagari Hindi';
  src: url('../tvz-fonts/TiroDevanagariHindi-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tiro Devanagari Hindi';
  src: url('../tvz-fonts/TiroDevanagariHindi-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

:root {
  --primary-color: #6F4E37;
  --secondary-color: #C4A484;
  --accent-color: #E5B80B;
  --text-color: #3E2723;
  --light-color: #F5F5DC;
  --dark-color: #2A2118;
  --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

body {
  font-family: 'Tiro Devanagari Hindi', serif;
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rozha One', serif;
  color: var(--dark-color);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tvz__header_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: var(--transition);
}

.tvz__header_content {
  max-width: 1386px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tvz__header_brand {
  font-family: 'Rozha One', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.tvz__header_brand:hover {
  color: var(--accent-color);
}

.tvz__header_navigation {
  display: flex;
  align-items: center;
}

.tvz__header_nav_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.tvz__header_nav_item {
  color: var(--text-color);
  padding: 0.5rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

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

.tvz__header_nav_item:hover::after {
  width: 100%;
}

.tvz__header_nav_item i {
  font-size: 1.2rem;
}

.tvz__header_contact_btn {
  background: var(--accent-color);
  color: var(--dark-color);
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tvz__header_contact_btn:hover {
  background: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tvz__header_burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.tvz__header_burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.tvz__header_burger.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.tvz__header_burger.active span:nth-child(2) {
    opacity: 0;
}

.tvz__header_burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.tvz__premium_section {
  min-height: 90vh;
  background: url('../tvz-images/tvz-back-image-3.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 4.5rem;
}

.tvz__premium_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 0;
}

.tvz__premium_content {
  max-width: 1386px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  width: 100%;
}

.tvz__premium_title {
  font-size: 3.5rem;
  color: var(--light-color);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tvz__premium_text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tvz__premium_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.tvz__premium_card {
  min-width: 176px;
  min-height: 63px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.tvz__premium_card:hover {
  background: rgba(229, 184, 11, 0.3);
  transform: translateY(-5px);
}

.tvz__about_section {
  padding: 5rem 2rem;
  background-color: white;
}

.tvz__about_container {
  max-width: 1386px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.tvz__about_image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tvz__about_image img {
  transition: var(--transition);
}

.tvz__about_image:hover img {
  transform: scale(1.05);
}

.tvz__about_content {
  flex: 1;
}

.tvz__about_title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
}

.tvz__about_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.tvz__about_text {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tvz__about_text i {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

.tvz__welcome_section {
  min-height: 70vh;
  background: url('../tvz-images/tvz-back-image-2.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.tvz__welcome_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(111, 78, 55, 0.8) 0%, rgba(196, 164, 132, 0.8) 100%);
}

.tvz__welcome_content {
  max-width: 1386px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  width: 100%;
}

.tvz__welcome_title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.tvz__welcome_text {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.tvz__welcome_icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 2.5rem;
  color: var(--accent-color);
}

.tvz__welcome_icons i {
  transition: var(--transition);
}

.tvz__welcome_icons i:hover {
  transform: translateY(-5px) scale(1.2);
}

.tvz__features_section {
  padding: 5rem 2rem;
  background-color: var(--light-color);
}

.tvz__features_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
}

.tvz__features_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.tvz__features_grid {
  max-width: 1386px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}

.tvz__features_card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.tvz__features_card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.tvz__features_card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.tvz__features_card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.tvz__feedback_section {
    position: relative;
    padding: 8rem 2rem;
    background-color: var(--light-color);
    overflow: hidden;
}

.tvz__feedback_waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    color: var(--primary-color);
    transform: rotate(180deg);
}

.tvz__feedback_container {
    max-width: 1386px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tvz__feedback_title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.tvz__feedback_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.tvz__feedback_viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.tvz__feedback_cards {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    gap: 30px;
    padding: 10px 5px;
}

.tvz__feedback_cards::-webkit-scrollbar {
    height: 8px;
}

.tvz__feedback_cards::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.tvz__feedback_cards::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.tvz__feedback_cards::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.tvz__feedback_card {
    min-width: 321px;
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tvz__feedback_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tvz__feedback_quote {
    color: var(--accent-color);
    font-size: 2.5rem;
    opacity: 0.7;
}

.tvz__feedback_text {
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    min-height: 170px;
}

.tvz__feedback_text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-color);
}

.tvz__feedback_author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.tvz__feedback_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.tvz__feedback_info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.tvz__feedback_name {
    font-weight: bold;
    color: var(--primary-color);
}

.tvz__feedback_location {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.tvz__feedback_rating {
    color: var(--accent-color);
}

.tvz__feedback_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.tvz__feedback_arrow {
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tvz__feedback_arrow:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.tvz__feedback_arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tvz__feedback_nav {
    flex-direction: column;
    gap: 1rem;
}

.tvz__feedback_dots_row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.tvz__feedback_dots {
    display: flex;
    gap: 1rem;
}

.tvz__feedback_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.tvz__feedback_dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

.tvz__faq_section {
  background: url('../tvz-images/tvz-back-image-1.jpg') center/cover no-repeat;
  position: relative;
  padding: 5rem 2rem;
}

.tvz__faq_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(63, 39, 23, 0.85);
}

.tvz__faq_content {
  max-width: 1386px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.tvz__faq_title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--light-color);
  margin-bottom: 3rem;
}

.tvz__faq_columns {
  display: flex;
  gap: 2rem;
}

.tvz__faq_column {
  flex: 1;
}

.tvz__faq_item {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.tvz__faq_question {
  padding: 1.5rem;
  font-size: 1.2rem;
  color: var(--light-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tvz__faq_question i {
  color: var(--light-color);
  transition: var(--transition);
}

.tvz__faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.tvz__faq_answer p {
  padding: 0 1.5rem 1.5rem;
}

.tvz__faq_item.active .tvz__faq_answer {
  max-height: 500px;
}

.tvz__faq_item.active .tvz__faq_question i {
  transform: rotate(180deg);
}

.tvz__faq_contact_btn {
  display: block;
  margin: 3rem auto 0;
  background: var(--accent-color);
  color: var(--dark-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
}

.tvz__faq_contact_btn:hover {
  background: var(--light-color);
  transform: translateY(-3px);
}

.tvz__footer_container {
  background: var(--primary-color);
  color: white;
  padding: 3rem 2rem 1rem;
}

.tvz__footer_links {
  max-width: 1386px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tvz__footer_link {
  color: white;
  transition: var(--transition);
}

.tvz__footer_link:hover {
  color: var(--accent-color);
}

.tvz__footer_contact_btn {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.tvz__footer_contact_btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--dark-color);
}

.tvz__footer_info {
  max-width: 1386px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tvz__footer_copyright {
  font-size: 0.9rem;
}

.tvz__footer_social {
  display: flex;
  gap: 1rem;
}

.tvz__footer_social p {
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.tvz__footer_social p:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.tvz__cookies_notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-color);
  color: white;
  padding: 1rem 2rem;
  z-index: 1001;
  transform: translateY(100%);
  transition: var(--transition);
}

.tvz__cookies_notice.show {
  transform: translateY(0);
}

.tvz__cookies_content {
  max-width: 1386px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.tvz__cookies_text {
  flex: 1;
  min-width: 250px;
}

.tvz__cookies_link {
  color: var(--accent-color);
  text-decoration: underline;
}

.tvz__cookies_accept {
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: bold;
  transition: var(--transition);
}

.tvz__cookies_accept:hover {
  background: var(--light-color);
}

.tvz__modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tvz__modal_overlay.active {
    opacity: 1;
    visibility: visible;
}

.tvz__modal_container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.tvz__modal_overlay.active .tvz__modal_container {
    transform: translateY(0);
}

.tvz__modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6F4E37;
    transition: color 0.2s ease;
}

.tvz__modal_close:hover {
    color: #E5B80B;
}

.tvz__form_group {
    margin-bottom: 20px;
}

.tvz__form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #6F4E37;
}

.tvz__form_input,
.tvz__form_textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.tvz__form_input:focus,
.tvz__form_textarea:focus {
    border-color: #E5B80B;
    outline: none;
}

.tvz__form_textarea {
    min-height: 120px;
    resize: vertical;
}

.tvz__form_hint {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #777;
}

.tvz__form_checkbox {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.tvz__form_check {
    margin-right: 10px;
    accent-color: #E5B80B;
}

.tvz__form_submit {
    background-color: #E5B80B;
    color: #3E2723;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tvz__form_submit:hover {
    background-color: #6F4E37;
    color: white;
}

.tvz__success_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tvz__success_overlay.active {
    opacity: 1;
    visibility: visible;
}

.tvz__success_container {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.tvz__success_overlay.active .tvz__success_container {
    transform: translateY(0);
}

.tvz__success_icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.tvz__success_title {
    color: #6F4E37;
    margin-bottom: 15px;
}

.tvz__success_text {
    color: #3E2723;
    margin-bottom: 25px;
    line-height: 1.5;
}

.tvz__submit_loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: tvz__spin 1s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes tvz__spin {
    to { transform: rotate(360deg); }
}

.tvz__form_input.invalid {
    border-color: #ff4444;
}

.tvz__form_input.valid {
    border-color: #00C851;
}

@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);
  }
}

@media (max-width: 1024px) {
  .tvz__about_container {
    flex-direction: column-reverse;
  }
  
  .tvz__testimonials_card {
    width: 90%;
    min-width: calc(33.333% - 22px);
  }
}

@media (max-width: 768px) {
    .tvz__header_burger {
        display: flex;
    }
    
    .tvz__header_nav_list {
        position: fixed;
        top: 4.5rem;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    
    .tvz__header_nav_list.active {
        transform: translateY(0);
    }
  
  .tvz__premium_title {
    font-size: 2.5rem;
  }
  
  .tvz__faq_columns {
    flex-direction: column;
  }

  .tvz__feedback_section,
  .tvz__features_section {
    padding: 8rem 0.5rem;
  }

  .tvz__feedback_card {
    min-width: 283px;
  }
}

@media (max-width: 480px) {
  .tvz__header_brand {
    font-size: 1.5rem;
  }
  
  .tvz__premium_title {
    font-size: 2rem;
  }
  
  .tvz__premium_card {
    flex: 1 1 100%;
  }
  
  .tvz__feedback_card {
    width: 100%;
    margin: 0 !important;
  }
  
  .tvz__feedback_card img {
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
  }
  
  .tvz__feedback_card h3,
  .tvz__feedback_location,
  .tvz__feedback_rating,
  .tvz__feedback_text {
    padding-left: 0;
    text-align: center;
  }
 
  .tvz__footer_links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .tvz__footer_info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 320px) {
    .tvz__features_grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
}

.tvzpg__privacy_section {
    padding: 120px 20px 60px;
    background-color: #FFF5EE;
    min-height: 100vh;
}

.tvzpg__privacy_container {
    max-width: 1386px;
    margin: 0 auto;
}

.tvzpg__privacy_title {
    font-family: 'Rozha One', serif;
    font-size: 2.8rem;
    color: #6F4E37;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.tvzpg__privacy_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #E5B80B;
}

.tvzpg__privacy_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tvzpg__privacy_item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.tvzpg__privacy_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.tvzpg__privacy_subtitle {
    font-family: 'Rozha One', serif;
    font-size: 1.5rem;
    color: #6F4E37;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tvzpg__privacy_text {
    font-family: 'Tiro Devanagari Hindi', serif;
    color: #3E2723;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .tvzpg__privacy_title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .tvzpg__privacy_title {
        font-size: 2rem;
    }
    
    .tvzpg__privacy_subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .tvzpg__privacy_title {
        font-size: 1.8rem;
    }
    
    .tvzpg__privacy_item {
        padding: 20px;
    }
}

.tvzpg__cookie_section {
    padding: 120px 20px 60px;
    background-color: #FFF8F0;
    min-height: 100vh;
}

.tvzpg__cookie_container {
    max-width: 1386px;
    margin: 0 auto;
}

.tvzpg__cookie_title {
    font-family: 'Rozha One', serif;
    font-size: 2.8rem;
    color: #6F4E37;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.tvzpg__cookie_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #E5B80B;
}

.tvzpg__cookie_content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.tvzpg__cookie_item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    flex: 1 1 45%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.tvzpg__cookie_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.tvzpg__cookie_subtitle {
    font-family: 'Rozha One', serif;
    font-size: 1.5rem;
    color: #6F4E37;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tvzpg__cookie_text {
    font-family: 'Tiro Devanagari Hindi', serif;
    color: #3E2723;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .tvzpg__cookie_title {
        font-size: 2.4rem;
    }
    
    .tvzpg__cookie_item {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .tvzpg__cookie_title {
        font-size: 2rem;
    }
    
    .tvzpg__cookie_content {
        flex-direction: column;
    }
    
    .tvzpg__cookie_item {
        flex: 1 1 100%;
        min-height: auto;
    }
    
    .tvzpg__cookie_subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .tvzpg__cookie_title {
        font-size: 1.8rem;
    }
    
    .tvzpg__cookie_item {
        padding: 20px;
    }
}

.tvzpg__terms_section {
    padding: 120px 20px 60px;
    background-color: #F5F5F5;
    min-height: 100vh;
}

.tvzpg__terms_container {
    max-width: 1386px;
    margin: 0 auto;
}

.tvzpg__terms_title {
    font-family: 'Rozha One', serif;
    font-size: 2.8rem;
    color: #6F4E37;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.tvzpg__terms_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #E5B80B;
}

.tvzpg__terms_content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.tvzpg__terms_item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.tvzpg__terms_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.tvzpg__terms_subtitle {
    font-family: 'Rozha One', serif;
    font-size: 1.5rem;
    color: #6F4E37;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tvzpg__terms_text {
    font-family: 'Tiro Devanagari Hindi', serif;
    color: #3E2723;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .tvzpg__terms_title {
        font-size: 2.4rem;
    }
    
    .tvzpg__terms_content {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .tvzpg__terms_title {
        font-size: 2rem;
    }
    
    .tvzpg__terms_subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .tvzpg__terms_title {
        font-size: 1.8rem;
    }
    
    .tvzpg__terms_content {
        grid-template-columns: 1fr;
    }
    
    .tvzpg__terms_item {
        padding: 20px;
    }
}

.tvzpg__error_section {
    padding: 120px 20px 60px;
    background-color: #FFF5EE;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tvzpg__error_container {
    max-width: 1386px;
    margin: 0 auto;
    width: 100%;
}

.tvzpg__error_content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.tvzpg__error_title {
    font-family: 'Rozha One', serif;
    font-size: 3rem;
    color: #6F4E37;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tvzpg__error_text {
    font-family: 'Tiro Devanagari Hindi', serif;
    color: #3E2723;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.tvzpg__error_animation {
    position: relative;
    height: 200px;
    margin: 40px 0;
}

.tvzpg__error_icon {
    font-size: 100px;
    color: #6F4E37;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.tvzpg__error_steam {
    position: absolute;
    width: 10px;
    height: 60px;
    background: rgba(255,255,255,0.7);
    bottom: 100px;
    border-radius: 10px;
    animation: steam 3s infinite ease-out;
}

.tvzpg__error_steam:nth-child(2) {
    left: calc(50% - 25px);
    animation-delay: 0.5s;
}

.tvzpg__error_steam:nth-child(3) {
    left: calc(50% + 15px);
    animation-delay: 1s;
}

@keyframes steam {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) scaleX(0.8);
    }
    100% {
        transform: translateY(-100px) scaleX(1.2);
        opacity: 0;
    }
}

.tvzpg__error_button {
    display: inline-block;
    background: #E5B80B;
    color: #3E2723;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Rozha One', serif;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.tvzpg__error_button:hover {
    background: #6F4E37;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .tvzpg__error_title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tvzpg__error_title {
        font-size: 2rem;
    }
    
    .tvzpg__error_text {
        font-size: 1.1rem;
    }
    
    .tvzpg__error_icon {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .tvzpg__error_title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .tvzpg__error_button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}