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

:root {
  --ih-grad-primary: linear-gradient(135deg, #ff00cc 0%, #3333ff 50%, #00ccff 100%);
  --ih-grad-secondary: linear-gradient(135deg, #ffcc00 0%, #ff00cc 50%, #cc00ff 100%);
  --ih-grad-tertiary: linear-gradient(135deg, #00ffcc 0%, #ccff00 50%, #ffcc00 100%);
  --ih-grad-quaternary: linear-gradient(135deg, #ff3366 0%, #ffcc00 50%, #33ccff 100%);
  --ih-color-dark: #1a1a2e;
  --ih-color-light: #ffffff;
  --ih-color-accent: #ffcc00;
  --ih-color-text: #16213e;
  --ih-color-background: #f0f5ff;
  --ih-shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --ih-shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.15);
  --ih-shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.2);
  --ih-border-radius: 16px;
  --ih-transition-normal: all 0.3s ease;
  --ih-transition-slow: all 0.5s ease;
  --ih-font-heading: 'Rozha One', serif;
  --ih-font-body: 'Karla', sans-serif;
}

body {
  font-family: var(--ih-font-body);
  color: var(--ih-color-text);
  background: var(--ih-color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

.ih-age-verify {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ih-age-content {
  background: var(--ih-color-light);
  padding: 3rem;
  border-radius: var(--ih-border-radius);
  text-align: center;
  max-width: 600px;
  box-shadow: var(--ih-shadow-strong);
}

.ih-age-content h2 {
  font-family: var(--ih-font-heading);
  margin-bottom: 1rem;
  color: var(--ih-color-text);
}

.ih-age-content p {
  margin-bottom: 2rem;
}

.ih-age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.ih-age-buttons button {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--ih-border-radius);
  font-family: var(--ih-font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--ih-transition-normal);
}

.ih-age-confirm {
  background: var(--ih-grad-primary);
  color: var(--ih-color-light);
}

.ih-age-deny {
  background: var(--ih-color-light);
  border: 2px solid var(--ih-color-text) !important;
  color: var(--ih-color-text);
}

.ih-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  background: var(--ih-color-dark);
  color: var(--ih-color-light);
  padding: 1.5rem;
  z-index: 9998;
  display: flex;
  justify-content: center;
}

.ih-cookie-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.ih-cookie-content p {
  flex: 1;
}

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

.ih-cookie-accept {
  background: var(--ih-grad-secondary);
  color: var(--ih-color-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ih-border-radius);
  cursor: pointer;
  transition: var(--ih-transition-normal);
}

.ih-global-header {
  background: var(--ih-color-light);
  box-shadow: var(--ih-shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ih-header-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 1rem 2rem;
  padding-top: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.ih-header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: center;
}

.ih-header-nav {
  display: flex;
  gap: 2rem;
}

.ih-nav-link {
  text-decoration: none;
  color: var(--ih-color-text);
  font-weight: 500;
  transition: var(--ih-transition-normal);
  position: relative;
}

.ih-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ih-grad-primary);
  transition: var(--ih-transition-normal);
}

.ih-nav-link:hover::after {
  width: 100%;
}

.ih-header-main {
    position: relative;
    width: 100%;

  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
}

.ih-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ih-logo-img {
  height: 50px;
  width: auto;
}

.ih-logo-text {
  font-family: var(--ih-font-heading);
  font-size: 1.8rem;
  background: var(--ih-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-contact-trigger {
  background: var(--ih-grad-primary);
  color: var(--ih-color-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ih-border-radius);
  font-family: var(--ih-font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--ih-transition-normal);
}

.ih-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ih-color-text);
  font-size: 2rem;
  cursor: pointer;
  z-index: 101;
}

.ih-spotlight-section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

.ih-spotlight-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/ih-core/ih-imgs/ih-bg-img-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.ih-spotlight-content {
  max-width: 1520px;
  margin: 0 auto;
  text-align: center;
}

.ih-spotlight-content h1 {
  font-family: var(--ih-font-heading);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--ih-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-spotlight-content > p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.ih-spotlight-card {
  background: var(--ih-color-light);
  padding: 2rem;
  border-radius: var(--ih-border-radius);
  box-shadow: var(--ih-shadow-soft);
  transition: var(--ih-transition-normal);
  text-align: center;
}

.ih-spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ih-shadow-medium);
}

.ih-spotlight-card .material-icons {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--ih-grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-spotlight-card h3 {
  margin-bottom: 1rem;
  font-family: var(--ih-font-heading);
}

.ih-cta-button {
  display: inline-block;
  background: var(--ih-grad-primary);
  color: var(--ih-color-light);
  padding: 1rem 2.5rem;
  border-radius: var(--ih-border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ih-transition-normal);
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
}

.ih-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--ih-shadow-medium);
}

.ih-features-section {
  padding: 6rem 2rem;
  background: var(--ih-color-light);
}

.ih-features-container {
  max-width: 1520px;
  margin: 0 auto;
}

.ih-features-container h2 {
  font-family: var(--ih-font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ih-grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ih-feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--ih-border-radius);
  background: var(--ih-color-background);
  transition: var(--ih-transition-normal);
}

.ih-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--ih-shadow-soft);
}

.ih-feature-icon {
  margin-bottom: 1.5rem;
}

.ih-feature-icon .material-icons {
  font-size: 3rem;
  background: var(--ih-grad-tertiary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-feature-item h3 {
  font-family: var(--ih-font-heading);
  margin-bottom: 1rem;
}

.ih-about-section {
  padding: 6rem 2rem;
  background: var(--ih-grad-primary);
  background-attachment: fixed;
}

.ih-about-container, .ih-journey-container {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ih-journey-container {
  margin-top: 6rem;
}

.ih-about-visual img, .ih-journey-visual img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 400px;
  border-radius: var(--ih-border-radius);
  background: var(--ih-grad-quaternary);
  box-shadow: var(--ih-shadow-medium);
}

.ih-about-content h2, .ih-journey-content h2 {
  font-family: var(--ih-font-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--ih-color-light);
}

.ih-about-content p, .ih-journey-content p {
  color: var(--ih-color-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.ih-about-highlights, .ih-journey-milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ih-about-highlight, .ih-journey-milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ih-about-highlight .material-icons, .ih-journey-milestone .material-icons {
  color: var(--ih-color-accent);
  font-size: 2rem;
}

.ih-about-highlight p, .ih-journey-milestone p {
  margin: 0;
  color: var(--ih-color-light);
}

.ih-games-section {
  padding: 6rem 2rem;
  background: var(--ih-color-light);
}

.ih-games-container {
  max-width: 1520px;
  margin: 0 auto;
}

.ih-games-container h2 {
  font-family: var(--ih-font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ih-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ih-game-card {
  background: var(--ih-color-background);
  border-radius: var(--ih-border-radius);
  overflow: hidden;
  box-shadow: var(--ih-shadow-soft);
  transition: var(--ih-transition-normal);
  position: relative;
  height: 100%;
}

.ih-game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ih-shadow-medium);
}

.ih-game-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ih-grad-secondary);
  color: var(--ih-color-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.ih-game-image img {
  width: 100%;
  max-width: 486px;
  height: 100%;
  max-height: 210px;
  background: var(--ih-grad-tertiary);
}

.ih-game-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-family: var(--ih-font-heading);
}

.ih-game-actions {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ih-game-link {
  background: var(--ih-grad-primary);
  color: var(--ih-color-light);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--ih-transition-normal);
}

.ih-game-link:hover {
  transform: scale(1.05);
}

.ih-game-actions .material-icons {
  color: #ff3366;
  cursor: pointer;
}

.ih-testimonials-section {
  padding: 6rem 2rem;
  background: var(--ih-color-background);
}

.ih-testimonials-container {
  max-width: 1520px;
  margin: 0 auto;
}

.ih-testimonials-container h2 {
  font-family: var(--ih-font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ih-grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-testimonials-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.ih-testimonial-card {
  width: 100%;
  max-width: 350px;
  background: var(--ih-color-light);
  padding: 2rem;
  border-radius: var(--ih-border-radius);
  box-shadow: var(--ih-shadow-soft);
  transition: var(--ih-transition-normal);
  position: relative;
}

.ih-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ih-shadow-medium);
}

.ih-testimonial-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.ih-testimonial-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ih-grad-primary);
}

.ih-testimonial-info h4 {
  font-family: var(--ih-font-heading);
  margin-bottom: 0.25rem;
}

.ih-testimonial-info p {  
  min-height: 50px;
  font-size: 0.8rem;
  color: #666;
}

.ih-testimonial-rating {
  display: flex;
  margin-left: auto;
}

.ih-testimonial-rating .material-icons {
  color: var(--ih-color-accent);
  font-size: 1rem;
}

.ih-testimonial-text {
  min-height: 113px;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.ih-testimonial-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 2rem;
  opacity: 0.1;
  color: var(--ih-color-text);
}

.ih-faq-section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

.ih-faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/ih-core/ih-imgs/ih-bg-img-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.ih-faq-container {
  max-width: 1520px;
  margin: 0 auto;
  text-align: center;
}

.ih-faq-container h2 {
  font-family: var(--ih-font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ih-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.ih-faq-category {
  background: var(--ih-color-light);
  padding: 2rem;
  border-radius: var(--ih-border-radius);
  box-shadow: var(--ih-shadow-soft);
}

.ih-faq-category h3 {
  font-family: var(--ih-font-heading);
  margin-bottom: 1.5rem;
  color: var(--ih-color-text);
  border-bottom: 2px solid var(--ih-color-accent);
  padding-bottom: 0.5rem;
}

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

.ih-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 0;
  font-family: var(--ih-font-body);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--ih-transition-normal);
}

.ih-faq-question:hover {
  color: var(--ih-color-accent);
}

.ih-faq-question .material-icons {
  transition: var(--ih-transition-normal);
}

.ih-faq-question.active .material-icons {
  transform: rotate(180deg);
}

.ih-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--ih-transition-slow);
}

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

.ih-faq-answer p {
  padding: 0 0 1rem;
}

.ih-faq-answer a {
  color: var(--ih-color-accent);
  text-decoration: underline;
  margin-top: 1.5rem;
}

.ih-welcome-section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

.ih-welcome-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/ih-core/ih-imgs/ih-bg-img-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.ih-welcome-content {
  max-width: 1520px;
  margin: 0 auto;
  text-align: center;
}

.ih-welcome-content h2 {
  font-family: var(--ih-font-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--ih-grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-welcome-content > p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.ih-welcome-card {
  background: var(--ih-color-light);
  padding: 2rem;
  border-radius: var(--ih-border-radius);
  box-shadow: var(--ih-shadow-soft);
  transition: var(--ih-transition-normal);
  text-align: center;
}

.ih-welcome-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ih-shadow-medium);
}

.ih-welcome-card .material-icons {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--ih-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-welcome-card h3 {
  margin-bottom: 1rem;
  font-family: var(--ih-font-heading);
}

.ih-responsibility-section {
  padding: 6rem 2rem;
  background: var(--ih-color-light);
}

.ih-responsibility-container {
  max-width: 1520px;
  margin: 0 auto;
  text-align: center;
}

.ih-responsibility-container h2 {
  font-family: var(--ih-font-heading);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: var(--ih-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-responsibility-content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.ih-responsibility-content p {
  margin-bottom: 1.5rem;
}

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

.ih-responsibility-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ih-responsibility-partners a,
.ih-responsibility-partners img {
  transition: var(--ih-transition-normal);
}

.ih-responsibility-partners a:hover {
  transform: scale(1.05);
}

.ih-contact-section {
  padding: 6rem 2rem;
  background: var(--ih-color-background);
}

.ih-contact-container {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.ih-contact-form {
  grid-column: 1 / -1;
  background: var(--ih-color-light);
  padding: 3rem;
  border-radius: var(--ih-border-radius);
  box-shadow: var(--ih-shadow-soft);
}

.ih-contact-form h2 {
  font-family: var(--ih-font-heading);
  margin-bottom: 2rem;
  text-align: center;
  background: var(--ih-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-form-group {
  margin-bottom: 1.5rem;
}

.ih-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ih-form-group input,
.ih-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: var(--ih-border-radius);
  font-family: var(--ih-font-body);
  transition: var(--ih-transition-normal);
}

.ih-form-group input:focus,
.ih-form-group textarea:focus {
  border-color: var(--ih-color-accent);
  outline: none;
}

.ih-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.ih-validation-message {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #ff3366;
  min-height: 1.2rem;
}

.ih-form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ih-form-checkbox input {
  width: auto;
}

.ih-form-checkbox label {
  margin: 0;
}

.ih-submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--ih-grad-primary);
  color: var(--ih-color-light);
  border: none;
  border-radius: var(--ih-border-radius);
  font-family: var(--ih-font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--ih-transition-normal);
}

.ih-submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ih-submit-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--ih-shadow-medium);
}

.ih-contact-info, .ih-contact-faq {
  background: var(--ih-color-light);
  padding: 2rem;
  border-radius: var(--ih-border-radius);
  box-shadow: var(--ih-shadow-soft);
}

.ih-contact-info h3, .ih-contact-faq h3 {
  font-family: var(--ih-font-heading);
  margin-bottom: 1.5rem;
  color: var(--ih-color-text);
}

.ih-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ih-contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ih-contact-method .material-icons {
  color: var(--ih-color-accent);
}

.ih-contact-method a {
  color: var(--ih-color-text);
  text-decoration: none;
  transition: var(--ih-transition-normal);
}

.ih-contact-method a:hover {
  color: var(--ih-color-accent);
}

.ih-faq-short {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ih-faq-short-item h4 {
  font-family: var(--ih-font-heading);
  margin-bottom: 0.5rem;
  color: var(--ih-color-text);
}

.ih-faq-short-item p {
  color: #666;
}

.ih-global-footer {
  position: relative;
  padding: 4rem 2rem 2rem;
  background: var(--ih-color-dark);
  color: var(--ih-color-light);
}

.ih-footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/ih-core/ih-imgs/ih-bg-img-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.ih-footer-container {
  max-width: 1520px;
  margin: 0 auto;
}

.ih-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ih-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ih-footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ih-footer-logo img {
  height: 40px;
  width: auto;
}

.ih-footer-logo span {
  font-family: var(--ih-font-heading);
  font-size: 1.5rem;
  color: var(--ih-color-light);
}

.ih-footer-brand p {
  opacity: 0.8;
}

.ih-footer-nav {
  display: flex;
  gap: 2rem;
}

.ih-footer-nav a {
  color: var(--ih-color-light);
  text-decoration: none;
  transition: var(--ih-transition-normal);
  opacity: 0.8;
}

.ih-footer-nav a:hover {
  opacity: 1;
  color: var(--ih-color-accent);
}

.ih-footer-bottom {
  text-align: center;
  opacity: 0.7;
}

.ih-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--ih-transition-normal);
}

.ih-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ih-modal-container {
  background: var(--ih-color-light);
  border-radius: var(--ih-border-radius);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: var(--ih-transition-normal);
}

.ih-modal-overlay.active .ih-modal-container {
  transform: scale(1);
}

.ih-modal-content {
  padding: 3rem 2rem 2rem;
}

.ih-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ih-color-text);
}

.ih-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--ih-transition-normal);
}

.ih-success-modal.active {
  opacity: 1;
  visibility: visible;
}

.ih-success-content {
  background: var(--ih-color-light);
  padding: 3rem;
  border-radius: var(--ih-border-radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
  transform: scale(0.9);
  transition: var(--ih-transition-normal);
}

.ih-success-modal.active .ih-success-content {
  transform: scale(1);
}

.ih-success-content .material-icons {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.ih-success-content h3 {
  font-family: var(--ih-font-heading);
  margin-bottom: 1rem;
  color: var(--ih-color-text);
}

.ih-success-content p {
  margin-bottom: 2rem;
}

.ih-success-close {
  background: var(--ih-grad-primary);
  color: var(--ih-color-light);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--ih-border-radius);
  font-family: var(--ih-font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--ih-transition-normal);
}

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

.ih-success-popup.active {
  opacity: 1;
  visibility: visible;
}

.ih-success-popup-content {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.ih-success-popup.active .ih-success-popup-content {
  transform: scale(1);
}

.ih-success-popup-content .material-icons {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.ih-success-popup-content h3 {
  font-family: 'Rozha One', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.ih-success-popup-content p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.ih-success-popup-close {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ih-success-popup-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

@media (max-width: 1024px) {
  .ih-spotlight-grid,
  .ih-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .ih-welcome-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .ih-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ih-about-container,
  .ih-journey-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ih-contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .ih-mobile-toggle {
    display: block;
    position: absolute;
    right: 2rem;
    top: 2rem;
  }
  
  .ih-header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--ih-color-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
  }
  
  .ih-header-nav.active {
    display: flex;
    transform: translateX(0);
  }
  
  .ih-header-nav .ih-nav-link {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
  
  .ih-header-container {
    position: relative;
  }
  
  .ih-spotlight-grid,
  .ih-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ih-welcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ih-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .ih-about-highlights,
  .ih-journey-milestones {
    grid-template-columns: 1fr;
  }

  .ih-testimonials-section,
  .ih-faq-section,
  .ih-contact-section,
  .ih-contact-form,
  .ih-contact-info,
  .ih-contact-faq {
    padding: 2rem 0.3rem;
  }
  
  .ih-footer-main {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .ih-footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .ih-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 0.1rem;
  }
}

@media (max-width: 480px) {
  .ih-spotlight-grid,
  .ih-features-grid,
  .ih-welcome-grid,
  .ih-games-grid {
    grid-template-columns: 1fr;
  }
  
  .ih-spotlight-content h1 {
    font-size: 2.5rem;
  }
  
  .ih-features-container h2,
  .ih-games-container h2,
  .ih-testimonials-container h2,
  .ih-faq-container h2,
  .ih-welcome-content h2,
  .ih-responsibility-container h2 {
    font-size: 2rem;
  }
  
  .ih-header-main {
    flex-direction: column;
    gap: 1rem;
  }
  
  .ih-age-buttons {
    flex-direction: column;
  }
  
  .ih-responsibility-partners {
    flex-direction: column;
  }
}

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

.ihpage-subscribe-modal.active {
  opacity: 1;
  visibility: visible;
}

.ihpage-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;  
  transform: scale(0.9);
  transition: transform 0.3s ease;
  padding: 2rem;
}

.ihpage-modal-content::-webkit-scrollbar {
  display: none;
}

.ihpage-subscribe-modal.active .ihpage-modal-content {
  transform: scale(1);
}

.ihpage-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  z-index: 10;
}

.ihpage-modal-header {
  text-align: center;
  margin: 2rem auto;
}

.ihpage-modal-header h2 {
  font-family: 'Rozha One', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.ihpage-modal-header p {
  color: #666;
  line-height: 1.6;
}

.ihpage-modal-body {
  margin-bottom: 0.2rem;
}

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

.ihpage-modal-benefit {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.ihpage-modal-benefit .material-icons {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.ihpage-modal-benefit h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.ihpage-modal-benefit p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.ihpage-modal-form-group {
  margin-bottom: 1rem;
}

.ihpage-modal-form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  transition: border-color 0.3s ease;
}

.ihpage-modal-form-group input:focus {
  border-color: #ff6b6b;
  outline: none;
}

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

.ihpage-modal-checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.ihpage-modal-checkbox label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #666;
}

.ihpage-modal-checkbox a {
  color: #ff6b6b;
  text-decoration: none;
}

.ihpage-modal-checkbox a:hover {
  text-decoration: underline;
}

.ihpage-modal-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ihpage-modal-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ihpage-modal-submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.ihpage-modal-link {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.ihpage-modal-link a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 500;
}

.ihpage-modal-link a:hover {
  text-decoration: underline;
}

.ihpage-modal-success {
  text-align: center;
  padding: 2rem 0;
}

.ihpage-modal-success .material-icons {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.ihpage-modal-success h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.ihpage-modal-success p {
  color: #666;
  margin-bottom: 1.5rem;
}

.ihpage-modal-success-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.ihpage-modal-change-email,
.ihpage-modal-unsubscribe {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ihpage-modal-change-email {
  background: #f0f0f0;
  color: #333;
  border: 2px solid #e0e0e0;
}

.ihpage-modal-unsubscribe {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.ihpage-modal-change-email:hover,
.ihpage-modal-unsubscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ihpage-modal-footer {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.ihpage-modal-footer p {
  font-size: 0.9rem;
  color: #999;
}

@media (max-width: 768px) {
  .ihpage-modal-content {
    padding: 1.5rem;
  }
  
  .ihpage-modal-benefits {
    grid-template-columns: 1fr;
  }
  
  .ihpage-modal-header h2 {
    font-size: 1.5rem;
  }
  
  .ihpage-modal-success-buttons {
    flex-direction: column;
  }
}

.ihpage-subscribe-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f6f9fc 0%, #e7eff9 100%);
  min-height: 100vh;
}

.ihpage-subscribe-hero {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.ihpage-subscribe-container {
  max-width: 800px;
  margin: 0 auto;
}

.ihpage-subscribe-hero h1 {
  font-family: 'Rozha One', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.ihpage-subscribe-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.ihpage-subscribe-form-section {
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  margin: 0 auto 3rem;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ihpage-subscribe-form-container h2,
.ihpage-subscribe-success h2 {
  font-family: 'Rozha One', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #333;
}

.ihpage-subscribe-form-container p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.ihpage-form-group {
  margin-bottom: 1.5rem;
}

.ihpage-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.ihpage-form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  transition: border-color 0.3s ease;
}

.ihpage-form-group input:focus {
  border-color: #ff6b6b;
  outline: none;
}

.ihpage-validation-message {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ff6b6b;
  min-height: 1.2rem;
}

.ihpage-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ihpage-form-checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.ihpage-form-checkbox label {
  margin: 0;
  font-weight: normal;
  line-height: 1.4;
}

.ihpage-form-checkbox a {
  color: #ff6b6b;
  text-decoration: none;
}

.ihpage-form-checkbox a:hover {
  text-decoration: underline;
}

.ihpage-subscribe-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.ihpage-subscribe-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.ihpage-subscribe-success {
  text-align: center;
}

.ihpage-subscribe-success .material-icons {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
}

.ihpage-subscribe-success p {
  margin-bottom: 2rem;
  color: #666;
}

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

.ihpage-success-button,
.ihpage-unsubscribe-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ihpage-success-button {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  text-decoration: none;
  border: none;
}

.ihpage-unsubscribe-button {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.ihpage-success-button:hover,
.ihpage-unsubscribe-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ihpage-subscribe-benefits {
  background: white;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

.ihpage-subscribe-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ihpage-subscribe-benefits h2 {
  font-family: 'Rozha One', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.ihpage-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.ihpage-benefit-item {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.ihpage-benefit-item .material-icons {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.ihpage-benefit-item h3 {
  font-family: 'Rozha One', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.ihpage-benefit-item p {
  color: #666;
  line-height: 1.6;
}

.ihpage-subscribe-faq {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.ihpage-subscribe-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.ihpage-subscribe-faq h2 {
  font-family: 'Rozha One', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.ihpage-faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ihpage-faq-item h3 {
  font-family: 'Rozha One', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.ihpage-faq-item p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ihpage-subscribe-hero {
    padding: 3rem 1.5rem;
  }
  
  .ihpage-subscribe-hero h1 {
    font-size: 2.5rem;
  }
  
  .ihpage-subscribe-form-section {
    padding: 2rem 1.5rem;
  }
  
  .ihpage-success-buttons {
    flex-direction: column;
  }
  
  .ihpage-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.ihpage-404-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ihpage-404-content {
  text-align: center;
  padding: 2rem;
}

.ihpage-404-container {
  max-width: 600px;
  margin: 0 auto;
}

.ihpage-404-icon .material-icons {
  font-size: 8rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

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

.ihpage-404-content h1 {
  font-family: 'Rozha One', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.ihpage-404-content p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ihpage-404-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.ihpage-404-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
  .ihpage-404-icon .material-icons {
    font-size: 6rem;
  }
  
  .ihpage-404-content h1 {
    font-size: 2.5rem;
  }
  
  .ihpage-404-content p {
    font-size: 1.1rem;
  }
}

.ihpage-responsible-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #e6f7ff 0%, #f0f9eb 100%);
  min-height: 100vh;
}

.ihpage-responsible-hero {
  background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.ihpage-responsible-hero h1 {
  font-family: 'Rozha One', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ihpage-responsible-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.ihpage-responsible-content {
  padding: 0 2rem;
}

.ihpage-responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ihpage-responsible-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 5px solid #0ba360;
}

.ihpage-responsible-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ihpage-responsible-icon {
  margin-bottom: 1.5rem;
}

.ihpage-responsible-icon .material-icons {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ihpage-responsible-item h2 {
  font-family: 'Rozha One', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.ihpage-responsible-item p {
  color: #666;
  line-height: 1.6;
}

.ihpage-responsible-item a {
  color: #0ba360;
  text-decoration: none;
  font-weight: 500;
}

.ihpage-responsible-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ihpage-responsible-hero {
    padding: 3rem 1.5rem;
  }
  
  .ihpage-responsible-hero h1 {
    font-size: 2.5rem;
  }
  
  .ihpage-responsible-grid {
    grid-template-columns: 1fr;
  }
  
  .ihpage-responsible-content {
    padding: 0 1rem;
  }
}

.ihpage-cookie-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f6f9fc 0%, #e7eff9 100%);
  min-height: 100vh;
}

.ihpage-cookie-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.ihpage-cookie-hero h1 {
  font-family: 'Rozha One', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ihpage-cookie-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.ihpage-cookie-content {
  padding: 0 2rem;
}

.ihpage-cookie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ihpage-cookie-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 5px solid #4facfe;
}

.ihpage-cookie-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ihpage-cookie-icon {
  margin-bottom: 1.5rem;
}

.ihpage-cookie-icon .material-icons {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ihpage-cookie-item h2 {
  font-family: 'Rozha One', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.ihpage-cookie-item p {
  color: #666;
  line-height: 1.6;
}

.ihpage-cookie-item a {
  color: #4facfe;
  text-decoration: none;
  font-weight: 500;
}

.ihpage-cookie-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ihpage-cookie-hero {
    padding: 3rem 1.5rem;
  }
  
  .ihpage-cookie-hero h1 {
    font-size: 2.5rem;
  }
  
  .ihpage-cookie-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
  
  .ihpage-cookie-content {
    padding: 0 1rem;
  }
}

.ihpage-terms-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  min-height: 100vh;
}

.ihpage-terms-hero {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  color: #333;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.ihpage-terms-hero h1 {
  font-family: 'Rozha One', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.ihpage-terms-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}

.ihpage-terms-content {
  padding: 0 2rem;
}

.ihpage-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ihpage-terms-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 5px solid #ff9a9e;
}

.ihpage-terms-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ihpage-terms-icon {
  margin-bottom: 1.5rem;
}

.ihpage-terms-icon .material-icons {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ihpage-terms-item h2 {
  font-family: 'Rozha One', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.ihpage-terms-item p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ihpage-terms-hero {
    padding: 3rem 1.5rem;
  }
  
  .ihpage-terms-hero h1 {
    font-size: 2.5rem;
  }
  
  .ihpage-terms-grid {
    grid-template-columns: 1fr;
  }
  
  .ihpage-terms-content {
    padding: 0 1rem;
  }
}

.ihpage-privacy-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
}

.ihpage-privacy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.ihpage-privacy-hero h1 {
  font-family: 'Rozha One', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ihpage-privacy-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.ihpage-privacy-content {
  padding: 0 2rem;
}

.ihpage-privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ihpage-privacy-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ihpage-privacy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ihpage-privacy-icon {
  margin-bottom: 1.5rem;
}

.ihpage-privacy-icon .material-icons {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ihpage-privacy-item h2 {
  font-family: 'Rozha One', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.ihpage-privacy-item p {
  color: #666;
  line-height: 1.6;
}

.ihpage-privacy-item a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.ihpage-privacy-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ihpage-privacy-hero {
    padding: 3rem 1.5rem;
  }
  
  .ihpage-privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .ihpage-privacy-grid {
    grid-template-columns: 1fr;
  }
  
  .ihpage-privacy-content {
    padding: 0 1rem;
  }
}