:root {
  --hv-navigacija-pozadina: linear-gradient(135deg, #8A2BE2 0%, #4B0082 50%, #0000FF 100%);
  --hv-dobrodosli-pozadina: linear-gradient(45deg, #FF1493 0%, #FF69B4 50%, #FFB6C1 100%);
  --hv-platforme-pozadina: linear-gradient(135deg, #00CED1 0%, #20B2AA 50%, #008080 100%);
  --hv-onama-pozadina: linear-gradient(45deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  --hv-pitanja-pozadina: linear-gradient(135deg, #32CD32 0%, #00FF00 50%, #ADFF2F 100%);
  --hv-odgovorno-pozadina: linear-gradient(45deg, #FF4500 0%, #FF6347 50%, #FF7F50 100%);
  --hv-poziv-pozadina: linear-gradient(135deg, #9370DB 0%, #8A2BE2 50%, #4B0082 100%);
  --hv-podnozje-pozadina: linear-gradient(45deg, #2F4F4F 0%, #696969 50%, #808080 100%);
  --hv-modal-pozadina: rgba(0, 0, 0, 0.92);
  --hv-bijela: #FFFFFF;
  --hv-crna: #000000;
  --hv-sjena: rgba(0, 0, 0, 0.1);
  --hv-font-naslov: 'Cormorant Garamond', serif;
  --hv-font-tekst: 'Quattrocento Sans', sans-serif;
}

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

body {
  font-family: var(--hv-font-tekst);
  color: var(--hv-bijela);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

.hv_background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/hv-core/hv-img/image-backgtound.webp') no-repeat center center;
  background-size: cover;
  z-index: -2;
}

.hv_navigacija {
  background: var(--hv-navigacija-pozadina);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px var(--hv-sjena);
}

.hv_navigacija-container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hv_navigacija-gornji {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hv_navigacija-naslov {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hv_navigacija-ime {
  font-family: var(--hv-font-naslov);
  font-size: 1.8rem;
  font-weight: 700;
}

.hv_navigacija-ikona {
  font-size: 2rem;
  color: var(--hv-bijela);
}

.hv_navigacija-izbornik {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.hv_navigacija-poveznica {
  color: var(--hv-bijela);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hv_navigacija-poveznica:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hv_navigacija-dom {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.hv_navigacija-email {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.hv_navigacija-donji {
  text-align: center;
}

.hv_navigacija-poruka {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hv_navigacija-mobitel {
  display: none;
}

.hv_sadrzaj {
  position: relative;
  z-index: 1;
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hv_dobrodosli {
  padding: 5rem 0;
  background: var(--hv-dobrodosli-pozadina);
  border-radius: 0 0 30px 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px var(--hv-sjena);
}

.hv_dobrodosli-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hv_dobrodosli-naslov {
  font-family: var(--hv-font-naslov);
  font-size: 3.2rem;
  margin-bottom: 1rem;
  min-height: 4.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hv_dobrodosli-podnaslov {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  min-height: 2rem;
}

.hv_dobrodosli-obavijest {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hv_dobrodosli-obavijest p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.hv_dobrodosli-opis {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.hv_dobrodosli-prednosti {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.hv_dobrodosli-prednost {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 20px;
  flex: 1;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.hv_dobrodosli-prednost:hover {
  transform: translateY(-10px);
}

.hv_dobrodosli-prednost i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.hv_dobrodosli-prednost h3 {
  font-family: var(--hv-font-naslov);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.hv_dobrodosli-akcija {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hv_dobrodosli-gumb {
  background: rgba(255, 255, 255, 0.25);
  color: var(--hv-bijela);
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hv_dobrodosli-gumb:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hv_platforme {
  padding: 4rem 0;
  background: var(--hv-platforme-pozadina);
  border-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px var(--hv-sjena);
}

.hv_platforme-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hv_platforme-naslov {
  font-family: var(--hv-font-naslov);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  min-height: 3.5rem;
}

.hv_platforme-opis {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  min-height: 1.8rem;
}

.hv_platforme-lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hv_platforme-kartica {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hv_platforme-kartica:hover {
  transform: translateY(-5px);
}

.hv_platforme-kartica-vrh {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hv_platforme-tip {
  background: rgba(255, 255, 255, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hv_platforme-logo {
  width: 100%;
  max-width: 200px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv_platforme-ime {
  font-family: var(--hv-font-naslov);
  font-size: 2rem;
  text-align: center;
}

.hv_platforme-kartica-sredina {
  padding: 1.5rem;
}

.hv_platforme-prednosti {
  list-style: none;
  margin-bottom: 1.5rem;
}

.hv_platforme-prednosti li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.hv_platforme-ocijena {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hv_platforme-zvijezde {
  display: flex;
  gap: 0.2rem;
  color: gold;
}

.hv_platforme-broj {
  font-weight: 600;
  font-size: 1.1rem;
}

.hv_platforme-placanja {
  margin-bottom: 1.5rem;
}

.hv_platforme-placanja p {
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #5f4040;
  text-align: center;
}

.hv_platforme-platna-sredstva {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.hv_platforme-platno {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  border: none;
  cursor: default;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hv_platforme-platno::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hv_platforme-platno:hover::before {
  left: 100%;
}

.hv_platforme-platno:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.hv_platforme-platna-sredstva {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hv_platforme-platna-sredstva i {
  font-size: 1.8rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.hv_platforme-platna-sredstva i:hover {
  opacity: 1;
}

.hv_platforme-kartica-dno {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hv_platforme-poveznica {
  background: rgba(255, 255, 255, 0.25);
  color: var(--hv-bijela);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hv_platforme-poveznica:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hv_onama {
  padding: 4rem 0;
  background: var(--hv-onama-pozadina);
  border-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px var(--hv-sjena);
}

.hv_onama-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hv_onama-naslov {
  font-family: var(--hv-font-naslov);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  min-height: 3.5rem;
}

.hv_onama-podnaslov {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  min-height: 1.8rem;
}

.hv_onama-blokovi {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.hv_onama-blok {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hv_onama-blok:nth-child(even) {
  flex-direction: row-reverse;
}

.hv_onama-slika {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hv_onama-slika img {
  width: 100%;
  height: 100%;
  display: block;
}

.hv_onama-tekst {
  flex: 1;
  padding: 1.5rem;
}

.hv_onama-tekst h3 {
  font-family: var(--hv-font-naslov);
  font-size: 2rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.hv_onama-tekst p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.hv_onama-napomena {
  font-size: 0.9rem !important;
  font-style: italic;
  opacity: 0.8;
}

.hv_onama-mini-prednosti {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hv_onama-mini-prednost {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.hv_onama-mini-prednost:hover {
  transform: translateY(-5px);
}

.hv_onama-mini-prednost i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.hv_onama-akcija {
  text-align: center;
}

.hv_onama-poveznica {
  background: rgba(255, 255, 255, 0.25);
  color: var(--hv-bijela);
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hv_onama-poveznica:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.hv_pitanja {
  padding: 4rem 0;
  background: var(--hv-pitanja-pozadina);
  border-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px var(--hv-sjena);
}

.hv_pitanja-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hv_pitanja-naslov {
  font-family: var(--hv-font-naslov);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  min-height: 3.5rem;
}

.hv_pitanja-opis {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  min-height: 1.8rem;
}

.hv_pitanja-blokovi {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hv_pitanja-blok {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
}

.hv_pitanja-blok h3 {
  font-family: var(--hv-font-naslov);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
}

.hv_pitanja-lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hv_pitanja-stavka {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.hv_pitanja-stavka:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hv_pitanja-pitanje {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
}

.hv_pitanja-pitanje:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hv_pitanja-odgovor {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0.5rem;
  text-align: center;
}

.hv_pitanja-stavka.aktivno .hv_pitanja-odgovor {
  max-height: 500px;
}

.hv_pitanja-stavka.aktivno .hv_pitanja-pitanje i {
  transform: rotate(180deg);
}

.hv_pitanja-obavijest {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  text-align: center;
}

.hv_pitanja-obavijest p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.hv_pitanja-akcija {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hv_pitanja-email {
  color: var(--hv-bijela);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hv_pitanja-email:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hv_pitanja-poveznica {
  background: rgba(255, 255, 255, 0.25);
  color: var(--hv-bijela);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hv_pitanja-poveznica:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hv_odgovorno {
  padding: 4rem 0;
  background: var(--hv-odgovorno-pozadina);
  border-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px var(--hv-sjena);
}

.hv_odgovorno-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem;
}

.hv_odgovorno-naslov {
  font-family: var(--hv-font-naslov);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 2rem;
  min-height: 3.5rem;
}

.hv_odgovorno-sadrzaj {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.hv_odgovorno-tekst {
  flex: 2;
}

.hv_odgovorno-tekst p:first-child {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hv_odgovorno-tekst p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.hv_odgovorno-kontakti {
  list-style: none;
  margin-bottom: 1.5rem;
}

.hv_odgovorno-kontakti li {
  margin-bottom: 0.8rem;
}

.hv_odgovorno-kontakti a {
  color: var(--hv-bijela);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hv_odgovorno-kontakti a:hover {
  text-decoration: underline;
  transform: translateX(5px);
}

.hv_odgovorno-poveznice {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.hv_odgovorno-poveznica {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 15px;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100px;
}

.hv_odgovorno-poveznica:hover {
  transform: scale(1.05);
}

.hv_odgovorno-poveznica img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hv_odgovorno-dob {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  grid-column: 1 / -1;
}

.hv_odgovorno-dob img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hv_poziv {
  padding: 4rem 0;
  background: var(--hv-poziv-pozadina);
  border-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px var(--hv-sjena);
}

.hv_poziv-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hv_poziv-naslov {
  font-family: var(--hv-font-naslov);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  min-height: 3.5rem;
}

.hv_poziv-opis {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  min-height: 1.8rem;
}

.hv_poziv-prednosti {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.hv_poziv-prednost {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.hv_poziv-prednost:hover {
  transform: translateY(-10px);
}

.hv_poziv-prednost i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.hv_poziv-prednost h3 {
  font-family: var(--hv-font-naslov);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.hv_poziv-akcija {
  text-align: center;
}

.hv_poziv-gumb {
  background: rgba(255, 255, 255, 0.25);
  color: var(--hv-bijela);
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hv_poziv-gumb:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hv_podnozje {
  background: var(--hv-podnozje-pozadina);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.hv_podnozje-container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hv_podnozje-gornji {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hv_podnozje-naslov {
  font-family: var(--hv-font-naslov);
  font-size: 2rem;
  font-weight: 700;
}

.hv_podnozje-izbornik {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hv_podnozje-poveznica {
  color: var(--hv-bijela);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hv_podnozje-poveznica:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hv_podnozje-srednji {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hv_podnozje-autorska {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hv_podnozje-dodatni-izbornik {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.hv_podnozje-donji {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hv_podnozje-obavijest {
  flex: 1;
}

.hv_podnozje-obavijest p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.hv_podnozje-poveznice {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.hv_podnozje-poveznica {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  width: 110px;
  height: 60px;
}

.hv_podnozje-poveznica:hover {
  transform: scale(1.05);
}

.hv_podnozje-poveznica img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hv_kolacici-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--hv-modal-pozadina);
  z-index: 2000;
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.hv_kolacici-modal.prikazano {
  transform: translateY(0);
}

.hv_kolacici-sadrzaj {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hv_kolacici-sadrzaj p {
  flex: 2;
}

.hv_kolacici-sadrzaj a {
  color: var(--hv-bijela);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.hv_kolacici-sadrzaj a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hv_kolacici-gumb {
  background: var(--hv-bijela);
  color: var(--hv-crna);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.hv_kolacici-gumb:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.hv_dob-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hv-modal-pozadina);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hv_dob-modal.prikazano {
  opacity: 1;
  visibility: visible;
}

.hv_dob-sadrzaj {
  background: var(--hv-navigacija-pozadina);
  padding: 3rem;
  border-radius: 30px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  max-height: 90vh;
}

.hv_dob-sadrzaj h2 {
  font-family: var(--hv-font-naslov);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.hv_dob-sadrzaj p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hv_dob-gumbovi {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hv_dob-potvrda {
  background: var(--hv-bijela);
  color: var(--hv-crna);
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
}

.hv_dob-potvrda:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.hv_dob-odustani {
  background: rgba(255, 255, 255, 0.2);
  color: var(--hv-bijela);
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
}

.hv_dob-odustani:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .hv_dobrodosli-naslov {
    font-size: 2.8rem;
  }
  
  .hv_dobrodosli-prednosti {
    flex-wrap: wrap;
  }
  
  .hv_pitanja-blokovi {
    flex-wrap: wrap;
  }
  
  .hv_pitanja-blok {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem 0.3rem;
  }

  .hv_pitanja-blok h3 {
    justify-content: center;
  }
  
  .hv_poziv-prednosti {
    grid-template-columns: 1fr;
  }
  
  .hv_podnozje-gornji,
  .hv_podnozje-srednji,
  .hv_podnozje-donji {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hv_podnozje-poveznice {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hv_navigacija-gornji,
  .hv_navigacija-donji {
    display: none;
  }
  
  .hv_navigacija-mobitel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  .hv_navigacija-mobitel-naslov span {
    font-family: var(--hv-font-naslov);
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .hv_navigacija-mobitel-gumb {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
  }
  
  .hv_navigacija-mobitel-gumb span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--hv-bijela);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  
  .hv_navigacija-mobitel-gumb span:nth-child(1) {
    top: 0;
  }
  
  .hv_navigacija-mobitel-gumb span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .hv_navigacija-mobitel-gumb span:nth-child(3) {
    bottom: 0;
  }
  
  .hv_navigacija-mobitel-gumb.aktivno span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  
  .hv_navigacija-mobitel-gumb.aktivno span:nth-child(2) {
    opacity: 0;
  }
  
  .hv_navigacija-mobitel-gumb.aktivno span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
  }
  
  .hv_navigacija-mobitel-izbornik {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--hv-navigacija-pozadina);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .hv_navigacija-mobitel-izbornik.prikazano {
    display: flex;
  }
  
  .hv_dobrodosli-naslov {
    font-size: 2.2rem;
  }
  
  .hv_dobrodosli-podnaslov {
    font-size: 1.2rem;
  }
  
  .hv_onama-blok,
  .hv_onama-blok:nth-child(even) {
    flex-direction: column;
  }
  
  .hv_odgovorno-sadrzaj {
    flex-direction: column;
  }
  
  .hv_odgovorno-poveznice {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hv_odgovorno-dob {
    grid-column: 1 / -1;
  }

  .hv_platforme-platna-sredstva {
    gap: 0.5rem;
  }

  .hv_onama-tekst {
    padding: 1.5rem 0.3rem;
  }
  
  .hv_platforme-platno {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .hv_kolacici-sadrzaj {
    flex-direction: column;
    text-align: center;
  }
  
  .hv_dob-gumbovi {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hv_sadrzaj {
    padding: 0 0.5rem;
  }
  
  .hv_dobrodosli {
    padding: 3rem 0;
  }
  
  .hv_dobrodosli-naslov {
    font-size: 1.8rem;
  }
  
  .hv_dobrodosli-podnaslov {
    font-size: 1rem;
  }
  
  .hv_dobrodosli-prednost {
    padding: 1.5rem;
  }
  
  .hv_platforme-naslov,
  .hv_onama-naslov,
  .hv_pitanja-naslov,
  .hv_odgovorno-naslov,
  .hv_poziv-naslov {
    font-size: 1.8rem;
  }
  
  .hv_pitanja-blok {
    flex: 1 1 100%;
  }
  
  .hv_onama-mini-prednosti {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hv_odgovorno-poveznice {
    grid-template-columns: 1fr;
    width: 100%;
  }
  
  .hv_podnozje-dodatni-izbornik {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hv_platforme-platna-sredstva {
    gap: 0.4rem;
  }
  
  .hv_platforme-platno {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 15px;
  }

  .hv_pitanja-akcija {
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .hv_pitanja-email {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hv_pitanja-pitanje {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
  
  .hv_podnozje-poveznice {
    flex-wrap: wrap;
  }
}

@media (max-width: 320px) {
  .hv_sadrzaj {
    padding: 0 0.3rem;
  }
  
  .hv_dobrodosli-naslov {
    font-size: 1.55rem;
  }
  
  .hv_platforme-naslov,
  .hv_onama-naslov,
  .hv_pitanja-naslov,
  .hv_odgovorno-naslov,
  .hv_poziv-naslov {
    font-size: 1.8rem;
  }
  
  .hv_onama-mini-prednosti {
    grid-template-columns: 1fr;
  }
  
  .hv_odgovorno-poveznice {
    grid-template-columns: 1fr;
  }
  
  .hv_dob-sadrzaj {
    padding: 2rem 1rem;
  }
}

.hvpage_privacy {
  background: transparent;
}

.hvpage_privacy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hvpage_privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: hvpage_privacy-float 20s infinite linear;
}

@keyframes hvpage_privacy-float {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-100px); }
}

.hvpage_privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.hvpage_privacy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.hvpage_privacy-decoration {
  font-size: 4rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  animation: hvpage_privacy-spin 10s infinite linear;
}

@keyframes hvpage_privacy-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hvpage_privacy-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  min-height: 1.8rem;
}

.hvpage_privacy-content {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
  color: #333;
}

.hvpage_privacy-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hvpage_privacy-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hvpage_privacy-section {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #667eea;
}

.hvpage_privacy-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hvpage_privacy-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hvpage_privacy-section-header i {
  font-size: 2.5rem;
  color: #667eea;
}

.hvpage_privacy-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #333;
  margin: 0;
  min-height: 2.5rem;
}

.hvpage_privacy-section-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hvpage_privacy-section-content ul {
  list-style: none;
  padding: 0;
}

.hvpage_privacy-section-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.hvpage_privacy-section-content li:hover {
  background: rgba(102, 126, 234, 0.1);
}

.hvpage_privacy-section-content li i {
  color: #667eea;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hvpage_privacy-section-content a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.hvpage_privacy-section-content a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.hvpage_privacy-notice {
  background: rgba(102, 126, 234, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.hvpage_privacy-notice p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.hvpage_privacy-notice i {
  color: #667eea;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hvpage_privacy-hero {
    padding: 3rem 0;
  }
  
  .hvpage_privacy-title {
    font-size: 2.5rem;
  }
  
  .hvpage_privacy-decoration {
    font-size: 3rem;
  }
  
  .hvpage_privacy-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .hvpage_privacy-section-header h2 {
    font-size: 1.7rem;
  }
  
  .hvpage_privacy-section {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hvpage_privacy-container {
    padding: 0 0.5rem;
  }
  
  .hvpage_privacy-title {
    font-size: 2rem;
  }
  
  .hvpage_privacy-subtitle {
    font-size: 1.1rem;
  }
  
  .hvpage_privacy-section-header h2 {
    font-size: 1.5rem;
  }
  
  .hvpage_privacy-section-content li {
    flex-direction: column;
    text-align: center;
  }

  .hvpage_privacy-section-content a {
    font-size: 0.8rem;
  }
}

.hvpage_terms {
  background: transparent;
}

.hvpage_terms-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hvpage_terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
  animation: hvpage_terms-pulse 8s ease-in-out infinite;
}

@keyframes hvpage_terms-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hvpage_terms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.hvpage_terms-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.hvpage_terms-decoration {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  animation: hvpage_terms-bounce 2s ease-in-out infinite;
}

@keyframes hvpage_terms-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hvpage_terms-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  min-height: 1.8rem;
}

.hvpage_terms-content {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
  color: #333;
}

.hvpage_terms-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
}

.hvpage_terms-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.hvpage_terms-section {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #f5576c;
  position: relative;
  overflow: hidden;
}

.hvpage_terms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 87, 108, 0.1), transparent);
  transition: left 0.5s ease;
}

.hvpage_terms-section:hover::before {
  left: 100%;
}

.hvpage_terms-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 87, 108, 0.2);
}

.hvpage_terms-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(245, 87, 108, 0.2);
}

.hvpage_terms-section-header i {
  font-size: 2.5rem;
  color: #f5576c;
  background: rgba(245, 87, 108, 0.1);
  padding: 0.8rem;
  border-radius: 15px;
}

.hvpage_terms-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #333;
  margin: 0;
  min-height: 2.5rem;
}

.hvpage_terms-section-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.hvpage_terms-section-content ul {
  list-style: none;
  padding: 0;
}

.hvpage_terms-section-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(245, 87, 108, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.hvpage_terms-section-content li:hover {
  background: rgba(245, 87, 108, 0.1);
  border-left-color: #f5576c;
  transform: translateX(5px);
}

.hvpage_terms-section-content li i {
  color: #f5576c;
  font-size: 1.3rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.hvpage_terms-section-content a {
  color: #f5576c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.hvpage_terms-section-content a:hover {
  color: #d43f5a;
  border-bottom-color: #d43f5a;
}

.hvpage_terms-notice {
  background: rgba(245, 87, 108, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 2px dashed rgba(245, 87, 108, 0.3);
}

.hvpage_terms-notice p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.hvpage_terms-notice i {
  color: #f5576c;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hvpage_terms-hero {
    padding: 3rem 0;
  }
  
  .hvpage_terms-title {
    font-size: 2.5rem;
  }
  
  .hvpage_terms-decoration {
    font-size: 3rem;
  }
  
  .hvpage_terms-sections {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hvpage_terms-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .hvpage_terms-section-header h2 {
    font-size: 1.7rem;
  }
  
  .hvpage_terms-section {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hvpage_terms-container {
    padding: 0 0.5rem;
  }
  
  .hvpage_terms-title {
    font-size: 2rem;
  }
  
  .hvpage_terms-subtitle {
    font-size: 1.1rem;
  }
  
  .hvpage_terms-section-header h2 {
    font-size: 1.5rem;
  }
  
  .hvpage_terms-section-content li {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .hvpage_terms-intro {
    padding: 1.5rem;
  }

  .hvpage_terms-section-content a {
    font-size: 0.8rem;
  }
}

.hvpage_cookies {
  background: transparent;
}

.hvpage_cookies-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hvpage_cookies-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.2) 0%, transparent 50%);
  animation: hvpage_cookies-rotate 20s linear infinite;
}

@keyframes hvpage_cookies-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hvpage_cookies-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.hvpage_cookies-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.hvpage_cookies-decoration {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  animation: hvpage_cookies-spin 3s ease-in-out infinite;
}

@keyframes hvpage_cookies-spin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

.hvpage_cookies-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  min-height: 1.8rem;
}

.hvpage_cookies-content {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
  color: #333;
}

.hvpage_cookies-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
  position: relative;
  overflow: hidden;
}

.hvpage_cookies-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: hvpage_cookies-float 15s infinite linear;
}

.hvpage_cookies-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.hvpage_cookies-section {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) border-box;
  position: relative;
  overflow: hidden;
}

.hvpage_cookies-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.hvpage_cookies-section:hover::after {
  transform: scaleX(1);
}

.hvpage_cookies-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(79, 172, 254, 0.2);
}

.hvpage_cookies-section-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.hvpage_cookies-section-header i {
  font-size: 2.8rem;
  color: #4facfe;
  background: rgba(79, 172, 254, 0.1);
  padding: 1rem;
  border-radius: 20px;
  min-width: 80px;
  text-align: center;
}

.hvpage_cookies-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #333;
  margin: 0;
  min-height: 2.8rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvpage_cookies-section-content p {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
  color: #555;
}

.hvpage_cookies-section-content ul {
  list-style: none;
  padding: 0;
}

.hvpage_cookies-section-content li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1.2rem;
  background: rgba(79, 172, 254, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.hvpage_cookies-section-content li:hover {
  background: rgba(79, 172, 254, 0.1);
  border-color: rgba(79, 172, 254, 0.3);
  transform: translateX(8px);
}

.hvpage_cookies-section-content li i {
  color: #4facfe;
  font-size: 1.4rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  background: rgba(79, 172, 254, 0.1);
  padding: 0.5rem;
  border-radius: 10px;
}

.hvpage_cookies-section-content strong {
  color: #4facfe;
  font-weight: 600;
}

.hvpage_cookies-controls {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 25px;
  padding: 3rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.hvpage_cookies-controls-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hvpage_cookies-controls-header i {
  font-size: 2.5rem;
}

.hvpage_cookies-controls-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin: 0;
  min-height: 2.5rem;
}

.hvpage_cookies-controls-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hvpage_cookies-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hvpage_cookies-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.hvpage_cookies-btn-accept {
  background: white;
  color: #4facfe;
}

.hvpage_cookies-btn-accept:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.hvpage_cookies-btn-manage {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
}

.hvpage_cookies-btn-manage:hover {
  background: white;
  color: #4facfe;
  transform: translateY(-3px);
}

.hvpage_cookies-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hvpage_cookies-btn-reject:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.hvpage_cookies-notice {
  background: rgba(79, 172, 254, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(79, 172, 254, 0.2);
}

.hvpage_cookies-notice p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.hvpage_cookies-notice i {
  color: #4facfe;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hvpage_cookies-hero {
    padding: 3rem 0;
  }
  
  .hvpage_cookies-title {
    font-size: 2.5rem;
  }
  
  .hvpage_cookies-decoration {
    font-size: 3rem;
  }
  
  .hvpage_cookies-sections {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hvpage_cookies-section {
    padding: 2rem;
  }
  
  .hvpage_cookies-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .hvpage_cookies-section-header h2 {
    font-size: 1.8rem;
  }
  
  .hvpage_cookies-controls {
    padding: 2rem;
  }
  
  .hvpage_cookies-controls-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hvpage_cookies-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hvpage_cookies-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hvpage_cookies-container {
    padding: 0 0.5rem;
  }
  
  .hvpage_cookies-title {
    font-size: 2rem;
  }
  
  .hvpage_cookies-subtitle {
    font-size: 1.1rem;
  }
  
  .hvpage_cookies-section-header h2 {
    font-size: 1.6rem;
  }
  
  .hvpage_cookies-section {
    padding: 1.5rem;
  }
  
  .hvpage_cookies-section-content li {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
}

.hvpage_cookies-checkbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.hvpage_cookies-checkbox input {
  display: none;
}

.hvpage_cookies-checkbox label {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: rgba(79, 172, 254, 0.1);
  border: 2px solid #4facfe;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.hvpage_cookies-checkbox label:hover {
  background: rgba(79, 172, 254, 0.2);
}

.hvpage_cookies-checkbox i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #4facfe;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.hvpage_cookies-checkbox input:checked + label i {
  transform: translate(-50%, -50%) scale(1);
}

.hvpage_cookies-checkbox input:checked + label {
  background: rgba(79, 172, 254, 0.2);
  border-color: #4facfe;
}

.hvpage_cookies-confirmation {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
  z-index: 10000;
  animation: hvpage_cookies-slideIn 0.5s ease-out;
}

.hvpage_cookies-confirmation-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.hvpage_cookies-confirmation-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.hvpage_cookies-confirmation-close:hover {
  background: rgba(255,255,255,0.2);
}

@keyframes hvpage_cookies-slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes hvpage_cookies-slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hvpage_cookies-checkbox {
    top: 0.5rem;
    right: 0.5rem;
  }
  
  .hvpage_cookies-confirmation {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 0.8rem 1rem;
  }
}

.hvpage_responsible {
  background: transparent;
}

.hvpage_responsible-hero {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hvpage_responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: hvpage_responsible-pulse 6s ease-in-out infinite;
}

@keyframes hvpage_responsible-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

.hvpage_responsible-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.hvpage_responsible-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.hvpage_responsible-decoration {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  animation: hvpage_responsible-heartbeat 2s ease-in-out infinite;
}

@keyframes hvpage_responsible-heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hvpage_responsible-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  min-height: 1.8rem;
}

.hvpage_responsible-content {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
  color: #333;
}

.hvpage_responsible-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.hvpage_responsible-intro::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: hvpage_responsible-shine 3s ease-in-out infinite;
}

@keyframes hvpage_responsible-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hvpage_responsible-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.hvpage_responsible-section {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%) border-box;
  position: relative;
  overflow: hidden;
}

.hvpage_responsible-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,107,107,0.02) 0%, rgba(255,167,38,0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hvpage_responsible-section:hover::before {
  opacity: 1;
}

.hvpage_responsible-section:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.hvpage_responsible-section-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 107, 107, 0.2);
}

.hvpage_responsible-section-header i {
  font-size: 2.8rem;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 1rem;
  border-radius: 20px;
  min-width: 80px;
  text-align: center;
  transition: all 0.3s ease;
}

.hvpage_responsible-section:hover .hvpage_responsible-section-header i {
  background: rgba(255, 107, 107, 0.2);
  transform: scale(1.1);
}

.hvpage_responsible-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #333;
  margin: 0;
  min-height: 2.8rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvpage_responsible-section-content p {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
  color: #555;
}

.hvpage_responsible-section-content ul {
  list-style: none;
  padding: 0;
}

.hvpage_responsible-section-content li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1.2rem;
  background: rgba(255, 107, 107, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.hvpage_responsible-section-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.hvpage_responsible-section-content li:hover::before {
  transform: scaleY(1);
}

.hvpage_responsible-section-content li:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateX(8px);
}

.hvpage_responsible-section-content li i {
  font-size: 1.4rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  background: rgba(255, 107, 107, 0.1);
  padding: 0.5rem;
  border-radius: 10px;
  min-width: 45px;
  text-align: center;
}

.hvpage_responsible-section-content li i.ri-error-warning-line {
  color: #ff6b6b;
}

.hvpage_responsible-section-content li i.ri-checkbox-circle-line {
  color: #4caf50;
}

.hvpage_responsible-section-content li i.ri-tools-line {
  color: #2196f3;
}

.hvpage_responsible-section-content li i.ri-lightbulb-line {
  color: #ff9800;
}

.hvpage_responsible-section-content li i.ri-customer-service-2-line {
  color: #9c27b0;
}

.hvpage_responsible-section-content li i.ri-links-line {
  color: #607d8b;
}

.hvpage_responsible-section-content li i.ri-book-open-line {
  color: #795548;
}

.hvpage_responsible-section-content li i.ri-user-smile-line {
  color: #e91e63;
}

.hvpage_responsible-section-content a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.hvpage_responsible-section-content a:hover {
  color: #ff5252;
  border-bottom-color: #ff5252;
}

.hvpage_responsible-urgent {
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  border-radius: 25px;
  padding: 3rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
  box-shadow: 0 15px 40px rgba(255, 82, 82, 0.4);
  position: relative;
  overflow: hidden;
}

.hvpage_responsible-urgent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: hvpage_responsible-urgent-float 20s infinite linear;
}

.hvpage_responsible-urgent-content {
  position: relative;
  z-index: 1;
}

.hvpage_responsible-urgent-content i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  animation: hvpage_responsible-alarm 2s ease-in-out infinite;
}

@keyframes hvpage_responsible-alarm {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-5deg); }
  75% { transform: scale(1.1) rotate(5deg); }
}

.hvpage_responsible-urgent-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  min-height: 3rem;
}

.hvpage_responsible-urgent-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hvpage_responsible-urgent-contacts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hvpage_responsible-urgent-btn {
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
  min-width: 250px;
  justify-content: center;
}

.hvpage_responsible-urgent-btn:hover {
  background: white;
  color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.hvpage_responsible-notice {
  background: rgba(255, 107, 107, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(255, 107, 107, 0.2);
}

.hvpage_responsible-notice p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.hvpage_responsible-notice i {
  color: #ff6b6b;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hvpage_responsible-hero {
    padding: 3rem 0;
  }
  
  .hvpage_responsible-title {
    font-size: 2.5rem;
  }
  
  .hvpage_responsible-decoration {
    font-size: 3rem;
  }
  
  .hvpage_responsible-sections {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hvpage_responsible-section {
    padding: 2rem;
  }
  
  .hvpage_responsible-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .hvpage_responsible-section-header h2 {
    font-size: 1.8rem;
  }
  
  .hvpage_responsible-urgent {
    padding: 2rem;
  }
  
  .hvpage_responsible-urgent-contacts {
    flex-direction: column;
    align-items: center;
  }
  
  .hvpage_responsible-urgent-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hvpage_responsible-container {
    padding: 0 0.5rem;
  }
  
  .hvpage_responsible-title {
    font-size: 2rem;
  }
  
  .hvpage_responsible-subtitle {
    font-size: 1.1rem;
  }

  .hvpage_responsible-section:hover {
    transform: translateY(-1px) rotate(0.1deg);
  }
  
  .hvpage_responsible-section-header h2 {
    font-size: 1.6rem;
  }
  
  .hvpage_responsible-section {
    padding: 1.5rem;
  }
  
  .hvpage_responsible-section-content li {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .hvpage_responsible-urgent {
    padding: 2rem 0.2rem;
  }
  
  .hvpage_responsible-urgent-content h3 {
    font-size: 2rem;
  }
}

.hvpage_about {
  background: transparent;
}

.hvpage_about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hvpage_about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: hvpage_about-float 15s infinite linear;
}

@keyframes hvpage_about-float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.hvpage_about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.hvpage_about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.hvpage_about-decoration {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  animation: hvpage_about-bounce 3s ease-in-out infinite;
}

@keyframes hvpage_about-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

.hvpage_about-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  min-height: 1.8rem;
}

.hvpage_about-journey {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
}

.hvpage_about-journey-content {
  text-align: center;
}

.hvpage_about-journey-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #333;
  margin-bottom: 3rem;
  min-height: 3.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvpage_about-journey-svg {
  max-width: 800px;
  margin: 0 auto 3rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.hvpage_about-journey-svg svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.hvpage_about-milestone {
  animation: hvpage_about-pulse 2s ease-in-out infinite;
}

.hvpage_about-milestone:nth-child(2) { animation-delay: 0.2s; }
.hvpage_about-milestone:nth-child(3) { animation-delay: 0.4s; }
.hvpage_about-milestone:nth-child(4) { animation-delay: 0.6s; }
.hvpage_about-milestone:nth-child(5) { animation-delay: 0.8s; }
.hvpage_about-milestone:nth-child(6) { animation-delay: 1s; }

@keyframes hvpage_about-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.hvpage_about-journey-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.hvpage_about-story {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(178, 179, 180, 0.95) 0%, rgba(219, 198, 240, 0.98) 100%);
}

.hvpage_about-story-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.hvpage_about-story-block {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hvpage_about-story-block:nth-child(even) {
  flex-direction: row-reverse;
}

.hvpage_about-story-text {
  flex: 1;
}

.hvpage_about-story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  min-height: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvpage_about-story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.hvpage_about-story-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hvpage_about-story-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.hvpage_about-story-feature:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-3px);
}

.hvpage_about-story-feature i {
  font-size: 1.5rem;
  color: #667eea;
}

.hvpage_about-story-feature span {
  font-weight: 600;
  color: #333;
}

.hvpage_about-story-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.hvpage_about-story-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hvpage_about-story-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.hvpage_about-story-image:hover img {
  transform: scale(1.05);
}

.hvpage_about-additional {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
}

.hvpage_about-additional-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.hvpage_about-additional-block {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.hvpage_about-additional-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.hvpage_about-additional-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.hvpage_about-additional-text {
  flex: 1;
}

.hvpage_about-additional-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  min-height: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvpage_about-additional-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.hvpage_about-additional-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.hvpage_about-additional-stat {
  text-align: center;
  flex: 1;
}

.hvpage_about-additional-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.hvpage_about-additional-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.hvpage_about-additional-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hvpage_about-additional-feature {
  text-align: center;
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.hvpage_about-additional-feature:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-5px);
}

.hvpage_about-additional-feature i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
  display: block;
}

.hvpage_about-additional-feature h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.8rem;
  min-height: 2rem;
}

.hvpage_about-additional-feature p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.hvpage_about-notice {
  padding: 2rem 0;
  background: rgba(102, 126, 234, 0.91);
}

.hvpage_about-notice-content {
  text-align: center;
}

.hvpage_about-notice-content p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.hvpage_about-notice-content i {
  color: #667eea;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hvpage_about-hero {
    padding: 3rem 0;
  }
  
  .hvpage_about-title {
    font-size: 2.5rem;
  }
  
  .hvpage_about-decoration {
    font-size: 3rem;
  }
  
  .hvpage_about-story-block,
  .hvpage_about-additional-block {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hvpage_about-story-block:nth-child(even) {
    flex-direction: column;
  }
  
  .hvpage_about-story-features {
    justify-content: center;
  }
  
  .hvpage_about-additional-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hvpage_about-additional-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hvpage_about-container {
    padding: 0 0.5rem;
  }
  
  .hvpage_about-title {
    font-size: 2rem;
  }
  
  .hvpage_about-subtitle {
    font-size: 1.1rem;
  }
  
  .hvpage_about-journey-title {
    font-size: 2.2rem;
  }
  
  .hvpage_about-story-text h2,
  .hvpage_about-additional-text h2 {
    font-size: 2rem;
  }
  
  .hvpage_about-journey-svg {
    padding: 1rem;
  }
}

.hvpage_faq {
  background: transparent;
}

.hvpage_faq-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hvpage_faq-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.2) 0%, transparent 50%);
  animation: hvpage_faq-rotate 20s linear infinite;
}

@keyframes hvpage_faq-rotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.hvpage_faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.hvpage_faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.hvpage_faq-decoration {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  animation: hvpage_faq-bounce 2s ease-in-out infinite;
}

@keyframes hvpage_faq-bounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(10deg); }
  75% { transform: scale(1.1) rotate(-10deg); }
}

.hvpage_faq-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  min-height: 1.8rem;
}

.hvpage_faq-svg-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
}

.hvpage_faq-svg-content {
  text-align: center;
}

.hvpage_faq-svg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
  min-height: 3.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvpage_faq-svg-animation {
  max-width: 800px;
  margin: 0 auto 2rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.hvpage_faq-svg-animation svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.hvpage_faq-question {
  animation: hvpage_faq-pulse 3s ease-in-out infinite;
}

@keyframes hvpage_faq-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hvpage_faq-svg-text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.hvpage_faq-main {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.90) 100%);
}

.hvpage_faq-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.hvpage_faq-block {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
}

.hvpage_faq-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.hvpage_faq-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.hvpage_faq-block-header i {
  font-size: 2.5rem;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 1rem;
  border-radius: 15px;
}

.hvpage_faq-block-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #333;
  margin: 0;
  min-height: 2.5rem;
}

.hvpage_faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hvpage_faq-item {
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hvpage_faq-item:hover {
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.hvpage_faq-question {
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.05);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.hvpage_faq-question:hover {
  background: rgba(102, 126, 234, 0.1);
}

.hvpage_faq-question span {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
  flex: 1;
}

.hvpage_faq-question i {
  color: #667eea;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hvpage_faq-item.active .hvpage_faq-question i {
  transform: rotate(180deg);
}

.hvpage_faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

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

.hvpage_faq-answer p {
  padding: 1.5rem;
  margin: 0;
  line-height: 1.6;
  color: #555;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.hvpage_faq-answer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hvpage_faq-answer a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.hvpage_faq-extended {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
}

.hvpage_faq-extended-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.hvpage_faq-extended-block {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
  position: relative;
  overflow: hidden;
}

.hvpage_faq-extended-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hvpage_faq-extended-block:hover::before {
  transform: scaleX(1);
}

.hvpage_faq-extended-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.hvpage_faq-extended-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.hvpage_faq-extended-header i {
  font-size: 2.5rem;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 1rem;
  border-radius: 15px;
}

.hvpage_faq-extended-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #333;
  margin: 0;
  min-height: 2.5rem;
}

.hvpage_faq-extended-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hvpage_faq-contact {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
}

.hvpage_faq-contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  min-height: 3rem;
}

.hvpage_faq-contact-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hvpage_faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.hvpage_faq-contact-btn:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.hvpage_faq-notice {
  padding: 2rem 0;
  background: rgba(102, 126, 234, 0.91);
}

.hvpage_faq-notice-content {
  text-align: center;
}

.hvpage_faq-notice-content p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.hvpage_faq-notice-content i {
  color: #667eea;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hvpage_faq-hero {
    padding: 3rem 0;
  }
  
  .hvpage_faq-title {
    font-size: 2.5rem;
  }
  
  .hvpage_faq-decoration {
    font-size: 3rem;
  }
  
  .hvpage_faq-blocks,
  .hvpage_faq-extended-blocks {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hvpage_faq-block,
  .hvpage_faq-extended-block {
    padding: 2rem;
  }
  
  .hvpage_faq-block-header,
  .hvpage_faq-extended-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .hvpage_faq-block-header h3,
  .hvpage_faq-extended-header h3 {
    font-size: 1.8rem;
  }
  
  .hvpage_faq-svg-title {
    font-size: 2.2rem;
  }
  
  .hvpage_faq-contact-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hvpage_faq-container {
    padding: 0 0.5rem;
  }
  
  .hvpage_faq-title {
    font-size: 2rem;
  }
  
  .hvpage_faq-subtitle {
    font-size: 1.1rem;
  }
  
  .hvpage_faq-block-header h3,
  .hvpage_faq-extended-header h3 {
    font-size: 1.6rem;
  }
  
  .hvpage_faq-block,
  .hvpage_faq-extended-block {
    padding: 1.5rem;
  }
  
  .hvpage_faq-question {
    padding: 1.2rem;
  }
  
  .hvpage_faq-question span {
    font-size: 1rem;
  }
  
  .hvpage_faq-answer p {
    padding: 1.2rem;
  }

  .hvpage_faq-answer a {
    font-size: 0.75rem;
  }

  .hvpage_faq-contact-btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
  }
  
  .hvpage_faq-svg-animation {
    padding: 1rem;
  }
}

.hvpage_404 {
  background: transparent;
}

.hvpage_404-hero {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hvpage_404-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 50%);
  animation: hvpage_404-pulse 4s ease-in-out infinite;
}

@keyframes hvpage_404-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hvpage_404-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.hvpage_404-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 5rem;
}

.hvpage_404-decoration {
  font-size: 5rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  animation: hvpage_404-shake 2s ease-in-out infinite;
}

@keyframes hvpage_404-shake {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-5deg) scale(1.1); }
  75% { transform: rotate(5deg) scale(1.1); }
}

.hvpage_404-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  min-height: 1.8rem;
}

.hvpage_404-content {
  padding: 4rem 0;
  background: rgba(255,255,255,0.95);
}

.hvpage_404-main {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.hvpage_404-image {
  flex: 1;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
}

.hvpage_404-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
}

.hvpage_404-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.hvpage_404-image:hover img {
  transform: scale(1.05);
}

.hvpage_404-text {
  flex: 1;
}

.hvpage_404-text-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  min-height: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvpage_404-text-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.hvpage_404-text-suggestion {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 107, 107, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ffa726;
}

.hvpage_404-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hvpage_404-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 107, 107, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hvpage_404-feature:hover {
  background: rgba(255, 107, 107, 0.1);
  transform: translateX(5px);
}

.hvpage_404-feature i {
  font-size: 1.5rem;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 0.8rem;
  border-radius: 10px;
  min-width: 50px;
  text-align: center;
}

.hvpage_404-feature span {
  font-weight: 600;
  color: #333;
}

.hvpage_404-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hvpage_404-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.hvpage_404-btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.hvpage_404-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.hvpage_404-btn-secondary {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.hvpage_404-btn-secondary:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-3px);
}

.hvpage_404-suggestions {
  text-align: center;
}

.hvpage_404-suggestions-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 2rem;
  min-height: 2.5rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvpage_404-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.hvpage_404-suggestion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%) border-box;
}

.hvpage_404-suggestion:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.hvpage_404-suggestion i {
  font-size: 2.5rem;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.hvpage_404-suggestion:hover i {
  background: rgba(255, 107, 107, 0.2);
  transform: scale(1.1);
}

.hvpage_404-suggestion span {
  font-weight: 600;
  font-size: 1.1rem;
}

.hvpage_404-notice {
  padding: 2rem 0;
  background: rgba(255, 107, 107, 0.90);
}

.hvpage_404-notice-content {
  text-align: center;
}

.hvpage_404-notice-content p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.hvpage_404-notice-content i {
  color: #ff6b6b;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hvpage_404-hero {
    padding: 3rem 0;
  }
  
  .hvpage_404-title {
    font-size: 3rem;
  }
  
  .hvpage_404-decoration {
    font-size: 4rem;
  }
  
  .hvpage_404-main {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hvpage_404-text-title {
    font-size: 2rem;
  }
  
  .hvpage_404-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hvpage_404-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hvpage_404-suggestions-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .hvpage_404-container {
    padding: 0 0.5rem;
  }
  
  .hvpage_404-title {
    font-size: 2.5rem;
  }
  
  .hvpage_404-subtitle {
    font-size: 1.1rem;
  }
  
  .hvpage_404-text-title {
    font-size: 1.8rem;
  }
  
  .hvpage_404-feature {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .hvpage_404-suggestions-grid {
    grid-template-columns: 1fr;
  }
  
  .hvpage_404-suggestion {
    padding: 1.5rem;
  }
}