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

:root {
  --er-vibrant-gradient1: linear-gradient(135deg, #ff2d75 0%, #8b5cf6 50%, #06b6d4 100%);
  --er-vibrant-gradient2: linear-gradient(45deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
  --er-vibrant-gradient3: linear-gradient(120deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
  --er-neon-pink: #ff2d75;
  --er-electric-purple: #8b5cf6;
  --er-cyan-blue: #06b6d4;
  --er-sunset-orange: #f59e0b;
  --er-max-width: 1680px;
  --er-heading-font: 'Fraunces', serif;
  --er-body-font: 'Nunito', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--er-body-font);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.er-navigation_wrapper {
  background: var(--er-vibrant-gradient1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.er-navigation_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.er-navigation_logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-family: var(--er-heading-font);
  font-size: 1.5rem;
}

.er-navigation_logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.er-navigation_menu {
  display: flex;
  gap: 2rem;
}

.er-navigation_link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
  font-weight: 500;
}

.er-navigation_link:hover {
  transform: translateY(-2px);
}

.er-navigation_toggle {
  display: none;
}

.er-navigation_icon {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.er-navigation_icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.er-navigation_icon span:nth-child(1) {
  top: 0;
}

.er-navigation_icon span:nth-child(2) {
  top: 8px;
}

.er-navigation_icon span:nth-child(3) {
  top: 16px;
}

@media (max-width: 768px) {
  .er-navigation_container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .er-navigation_menu {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    display: none;
  }
  
  .er-navigation_toggle {
    display: block;
  }
  
  .er-navigation_menu.active {
    display: flex;
  }
}

@media (max-width: 480px) {
  .er-navigation_container {
    padding: 0 0.5rem;
  }
}

@media (max-width: 320px) {
  .er-navigation_container {
    padding: 0 0.3rem;
  }
}

.er-welcome_section {
  min-height: 100vh;
  background: var(--er-vibrant-gradient2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.er-welcome_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/er-core/er-image/social-background-image.webp') center/cover no-repeat;
  opacity: 0.26;
}

.er-welcome_content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.er-welcome_content h1 {
  font-family: var(--er-heading-font);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-welcome_content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

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

.er-welcome_feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.er-welcome_feature:hover {
  transform: translateY(-5px);
}

.er-welcome_feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.er-welcome_feature p {
  margin: 0;
  font-weight: 500;
}

.er-welcome_cta {
  display: inline-block;
  background: white;
  color: var(--er-neon-pink);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.er-welcome_cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
  .er-welcome_content h1 {
    font-size: 3rem;
    min-height: 100px;
  }
}

@media (max-width: 768px) {
  .er-welcome_section {
    margin-top: 107px;
    padding-top: 40px;
  }

  .er-welcome_features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .er-welcome_content h1 {
    font-size: 2.5rem;
    min-height: 80px;
  }
}

@media (max-width: 480px) {
  .er-welcome_features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .er-welcome_content {
    padding: 1rem;
  }
  
  .er-welcome_content h1 {
    font-size: 2rem;
    min-height: 60px;
  }
}

@media (max-width: 320px) {
  .er-welcome_content {
    padding: 0.5rem;
  }
}

.er-about_section {
  padding: 6rem 0;
  background: var(--er-vibrant-gradient3);
}

.er-about_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.er-about_block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.er-about_block2 {
  flex-direction: row-reverse;
}

.er-about_image {
  flex: 1;
}

.er-about_image img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.er-about_content {
  flex: 1;
  color: white;
}

.er-about_content h2 {
  font-family: var(--er-heading-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.er-about_content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.er-about_highlights {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.er-about_highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.er-about_highlight i {
  font-size: 1.2rem;
}

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

.er-about_feature {
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.er-about_feature i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.er-about_link {
  display: inline-block;
  background: white;
  color: var(--er-electric-purple);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.er-about_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
  .er-about_block {
    gap: 3rem;
  }
  
  .er-about_content h2 {
    font-size: 2rem;
    min-height: 60px;
  }
}

@media (max-width: 768px) {
  .er-about_block {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .er-about_highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .er-about_features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .er-about_container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .er-about_features {
    grid-template-columns: 1fr;
  }
  
  .er-about_container {
    padding: 0 0.5rem;
  }
  
  .er-about_content h2 {
    font-size: 1.8rem;
    min-height: 50px;
  }
}

@media (max-width: 320px) {
  .er-about_container {
    padding: 0 0.3rem;
  }
}

.er-games_section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.er-games_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.er-games_container h2 {
  font-family: var(--er-heading-font);
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-games_container p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.er-games_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.er-game_card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  transition: transform 0.3s ease;
}

.er-game_card:hover {
  transform: translateY(-10px);
}

.er-game_badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--er-neon-pink);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.er-game_image {
  margin-bottom: 1.5rem;
}

.er-game_image img {
  width: 100%;
  max-width: 726px;
  height: 100%;
  max-height: 220px;
  border-radius: 15px;
}

.er-game_card h3 {
  color: white;
  font-family: var(--er-heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-game_link {
  display: inline-block;
  background: white;
  color: var(--er-electric-purple);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.er-game_link:hover {
  background: var(--er-neon-pink);
  color: white;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .er-games_container h2 {
    font-size: 2.5rem;
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  .er-games_grid {
    grid-template-columns: 1fr;
  }
  
  .er-games_container {
    padding: 0 1rem;
  }
  
  .er-games_container h2 {
    font-size: 2.2rem;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .er-games_container {
    padding: 0 0.5rem;
  }
  
  .er-game_card {
    padding: 1.5rem;
  }
  
  .er-games_container h2 {
    font-size: 2rem;
    min-height: 50px;
  }
}

@media (max-width: 320px) {
  .er-games_container {
    padding: 0 0.3rem;
  }
}

.er-benefits_section {
  padding: 6rem 0;
  background: var(--er-vibrant-gradient1);
}

.er-benefits_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.er-benefits_container h2 {
  font-family: var(--er-heading-font);
  font-size: 3rem;
  color: white;
  margin-bottom: 3rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.er-benefit_card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.er-benefit_card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.er-benefit_card i {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  display: block;
}

.er-benefit_card h3 {
  color: white;
  font-family: var(--er-heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-benefit_card p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .er-benefits_container h2 {
    font-size: 2.5rem;
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  .er-benefits_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .er-benefits_container {
    padding: 0 1rem;
  }
  
  .er-benefits_container h2 {
    font-size: 2.2rem;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .er-benefits_grid {
    grid-template-columns: 1fr;
  }
  
  .er-benefits_container {
    padding: 0 0.5rem;
  }
  
  .er-benefit_card {
    padding: 2rem 1.5rem;
  }
  
  .er-benefits_container h2 {
    font-size: 2rem;
    min-height: 50px;
  }
}

@media (max-width: 320px) {
  .er-benefits_container {
    padding: 0 0.3rem;
  }
}

.er-subscribe_section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.er-subscribe_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.er-subscribe_content h2 {
  font-family: var(--er-heading-font);
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.er-subscribe_content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.er-subscribe_features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.er-subscribe_feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.er-subscribe_feature i {
  font-size: 1.5rem;
}

.er-subscribe_form_container {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.er-form_group {
  margin-bottom: 1.5rem;
  position: relative;
}

.er-form_group input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.er-form_group input:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,0.2);
}

.er-form_group input::placeholder {
  color: rgba(255,255,255,0.7);
}

.er-form_error {
  color: #ffeb3b;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.er-checkbox_label {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.8rem;
  color: white;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 0.5rem 0;
  width: 100%;
}

.er-checkbox_label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.er-checkbox_custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.er-checkbox_label:hover .er-checkbox_custom {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
}

.er-checkbox_label input:checked + .er-checkbox_custom {
  background: white;
  border-color: white;
}

.er-checkbox_label input:checked + .er-checkbox_custom::after {
  content: '✓';
  color: var(--er-neon-pink);
  font-weight: bold;
  font-size: 0.9rem;
  position: relative;
  top: -1px;
}

.er-checkbox_label input:focus + .er-checkbox_custom {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.er-checkbox_text {
  flex: 1;
  text-align: left;
}

.er-checkbox_label a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.er-checkbox_label a:hover {
  text-decoration: underline;
  color: #ffff8d;
}

.er-subscribe_btn {
  width: 100%;
  padding: 1rem;
  background: white;
  color: var(--er-neon-pink);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.er-subscribe_btn:enabled:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.er-subscribe_success {
  text-align: center;
  color: white;
  display: none;
}

.er-subscribe_success i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #4ade80;
}

.er-subscribe_success h3 {
  font-family: var(--er-heading-font);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.er-subscribe_success p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.er-success_actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.er-success_actions button {
  padding: 0.8rem 1.5rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.er-success_actions button:hover {
  background: white;
  color: var(--er-neon-pink);
}

.er-subscribe_decoration {
  position: absolute;
  bottom: -50px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
  z-index: 0;
}

@media (max-width: 1024px) {
  .er-subscribe_content h2 {
    font-size: 2.2rem;
    min-height: 60px;
  }
}

@media (max-width: 768px) {
  .er-subscribe_container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .er-subscribe_content h2 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .er-subscribe_form_container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .er-subscribe_container {
    padding: 0 0.5rem;
  }
  
  .er-subscribe_form_container {
    padding: 1.5rem;
  }
  
  .er-success_actions {
    flex-direction: column;
  }
  
  .er-subscribe_content h2 {
    font-size: 1.8rem;
    min-height: 45px;
  }
}

@media (max-width: 320px) {
  .er-subscribe_container {
    padding: 0 0.3rem;
  }
}

.er-faq_section {
  padding: 6rem 0;
  background: var(--er-vibrant-gradient2);
}

.er-faq_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.er-faq_container h2 {
  font-family: var(--er-heading-font);
  font-size: 3rem;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-faq_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.er-faq_category h3 {
  color: white;
  font-family: var(--er-heading-font);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.er-faq_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.er-faq_item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}

.er-faq_question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: white;
  font-weight: 500;
  transition: background 0.3s ease;
}

.er-faq_question:hover {
  background: rgba(255,255,255,0.1);
}

.er-faq_question i {
  transition: transform 0.3s ease;
}

.er-faq_question.active i {
  transform: rotate(180deg);
}

.er-faq_answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.9);
}

.er-faq_answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.er-faq_contact {
  display: block;
  text-align: center;
  margin-top: 3rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.er-faq_contact:hover {
  transform: scale(1.05);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .er-faq_container h2 {
    font-size: 2.5rem;
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  .er-faq_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .er-faq_container {
    padding: 0 1rem;
  }
  
  .er-faq_container h2 {
    font-size: 2.2rem;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .er-faq_container {
    padding: 0 0.5rem;
  }
  
  .er-faq_question {
    padding: 1rem;
  }
  
  .er-faq_answer {
    padding: 0 1rem;
  }
  
  .er-faq_answer.active {
    padding: 0 1rem 1rem;
  }
  
  .er-faq_container h2 {
    font-size: 2rem;
    min-height: 50px;
  }
}

@media (max-width: 320px) {
  .er-faq_container {
    padding: 0 0.3rem;
  }
}

.er-social_section {
  padding: 6rem 0;
  background: var(--er-vibrant-gradient3);
}

.er-social_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.er-social_container h2 {
  font-family: var(--er-heading-font);
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-social_container p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.er-social_feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.er-social_feature:hover {
  transform: translateY(-5px);
}

.er-social_feature i {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  display: block;
}

.er-social_feature h3 {
  color: white;
  font-family: var(--er-heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-social_feature p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 1rem;
}

.er-social_cta {
  display: inline-block;
  background: white;
  color: var(--er-electric-purple);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.er-social_cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
  .er-social_container h2 {
    font-size: 2.5rem;
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  .er-social_features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .er-social_container {
    padding: 0 1rem;
  }
  
  .er-social_container h2 {
    font-size: 2.2rem;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .er-social_features {
    grid-template-columns: 1fr;
  }
  
  .er-social_container {
    padding: 0 0.5rem;
  }
  
  .er-social_feature {
    padding: 2rem 1.5rem;
  }
  
  .er-social_container h2 {
    font-size: 2rem;
    min-height: 50px;
  }
}

@media (max-width: 320px) {
  .er-social_container {
    padding: 0 0.3rem;
  }
}

.er-testimonials_section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.er-testimonials_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.er-testimonials_container h2 {
  font-family: var(--er-heading-font);
  font-size: 3rem;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-testimonials_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.er-testimonial_card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.er-testimonial_card:hover {
  transform: translateY(-5px);
}

.er-testimonial_header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.er-testimonial_header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.er-testimonial_info h4 {
  color: white;
  font-family: var(--er-heading-font);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.er-testimonial_rating {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.er-testimonial_info span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.er-testimonial_header i {
  position: absolute;
  right: 0;
  bottom: 70px;
  font-size: 2rem;
  color: rgba(255,255,255,0.3);
}

.er-testimonial_card p {
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.er-testimonial_rating i {
  position: relative;
  top: 0;
  right: 0;
  font-size: 1.1rem;
  color: #ffd700;
}

.er-testimonial_date {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .er-testimonials_container h2 {
    font-size: 2.5rem;
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  .er-testimonials_grid {
    grid-template-columns: 1fr;
  }
  
  .er-testimonials_container {
    padding: 0 1rem;
  }
  
  .er-testimonials_container h2 {
    font-size: 2.2rem;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .er-testimonials_container {
    padding: 0 0.5rem;
  }
  
  .er-testimonial_card {
    padding: 1.5rem;
  }
  
  .er-testimonials_container h2 {
    font-size: 2rem;
    min-height: 50px;
  }
}

@media (max-width: 320px) {
  .er-testimonials_container {
    padding: 0 0.3rem;
  }
}

.er-responsibility_section {
  padding: 6rem 0;
  background: var(--er-vibrant-gradient1);
}

.er-responsibility_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.er-responsibility_container h2 {
  font-family: var(--er-heading-font);
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-responsibility_content {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 3rem;
}

.er-responsibility_content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: left;
}

.er-responsibility_content a {
  color: #ffeb3b;
  text-decoration: none;
}

.er-responsibility_content a:hover {
  text-decoration: underline;
}

.er-responsibility_link {
  display: inline-block;
  background: white;
  color: var(--er-electric-purple);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.er-responsibility_link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.er-responsibility_partners {
  margin-top: 3rem;
}

.er-partner_images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.er-partner_images a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.er-partner_images a:hover {
  transform: scale(1.1);
}

.er-partner_images img {
  filter: brightness(0.4) invert(1);
}

.er-partner_images img:hover {
  filter: brightness(1) invert(0);
}

.er-age_restriction {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .er-responsibility_container h2 {
    font-size: 2.5rem;
    min-height: 70px;
  }
  
  .er-partner_images {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .er-responsibility_container {
    padding: 0 1rem;
  }
  
  .er-responsibility_content {
    padding: 2rem;
  }
  
  .er-responsibility_container h2 {
    font-size: 2.2rem;
    min-height: 60px;
  }
  
  .er-partner_images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .er-responsibility_container {
    padding: 0 0.5rem;
  }
  
  .er-responsibility_content {
    padding: 1.5rem;
  }
  
  .er-partner_images {
    grid-template-columns: 1fr;
  }
  
  .er-responsibility_container h2 {
    font-size: 2rem;
    min-height: 50px;
  }
}

@media (max-width: 320px) {
  .er-responsibility_container {
    padding: 0 0.3rem;
  }
}

.er-contact_section {
  padding: 6rem 0;
  background: var(--er-vibrant-gradient2);
}

.er-contact_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
}

.er-contact_form_container h2 {
  font-family: var(--er-heading-font);
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2rem;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.er-contact_form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.er-contact_form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 15px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  min-height: 120px;
  resize: vertical;
  transition: all 0.3s ease;
  font-family: var(--er-body-font);
}

.er-contact_form textarea:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,0.2);
}

.er-contact_form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.er-contact_btn {
  width: 100%;
  padding: 1rem;
  background: white;
  color: var(--er-neon-pink);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.er-contact_btn:enabled:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.er-contact_success {
  text-align: center;
  color: white;
  display: none;
}

.er-contact_success i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #4ade80;
}

.er-contact_success h3 {
  font-family: var(--er-heading-font);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.er-contact_success p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.er-contact_success button {
  padding: 0.8rem 2rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.er-contact_success button:hover {
  background: white;
  color: var(--er-neon-pink);
}

.er-contact_info h3 {
  font-family: var(--er-heading-font);
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.er-contact_info p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.er-contact_details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.er-contact_detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.er-contact_detail i {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

.er-contact_detail h4 {
  font-family: var(--er-heading-font);
  margin-bottom: 0.3rem;
}

.er-contact_detail a {
  color: #ffeb3b;
  text-decoration: none;
}

.er-contact_detail a:hover {
  text-decoration: underline;
}

.er-contact_decoration {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
  z-index: 0;
}

@media (max-width: 1024px) {
  .er-contact_form_container h2 {
    font-size: 2.2rem;
    min-height: 60px;
  }
  
  .er-contact_info h3 {
    font-size: 1.8rem;
    min-height: 45px;
  }
}

@media (max-width: 768px) {
  .er-contact_container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .er-contact_form_container h2 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .er-contact_form {
    padding: 2rem;
  }
  
  .er-contact_info h3 {
    font-size: 1.7rem;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .er-contact_container {
    padding: 0 0.5rem;
  }
  
  .er-contact_form {
    padding: 1.5rem;
  }
  
  .er-contact_form_container h2 {
    font-size: 1.8rem;
    min-height: 45px;
  }
  
  .er-contact_info h3 {
    font-size: 1.6rem;
    min-height: 35px;
  }
}

@media (max-width: 320px) {
  .er-contact_container {
    padding: 0 0.3rem;
  }
}

.er-footer_wrapper {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

.er-footer_container {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.er-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);
}

.er-footer_logo span {
  font-family: var(--er-heading-font);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.er-footer_logo p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.er-footer_links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.er-footer_links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.er-footer_links a:hover {
  color: white;
}

.er-footer_bottom {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .er-footer_main {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .er-footer_links {
    justify-content: center;
  }
  
  .er-footer_container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .er-footer_container {
    padding: 0 0.5rem;
  }
  
  .er-footer_links {
    gap: 1rem;
  }
}

@media (max-width: 320px) {
  .er-footer_container {
    padding: 0 0.3rem;
  }
}

.er-cookies_popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

.er-cookies_content {
  max-width: var(--er-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.er-cookies_content p {
  margin: 0;
  flex: 1;
}

.er-cookies_content a {
  color: #ffeb3b;
  text-decoration: none;
}

.er-cookies_content a:hover {
  text-decoration: underline;
}

.er-cookies_accept {
  background: var(--er-neon-pink);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.er-cookies_accept:hover {
  background: #ff1a5e;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .er-cookies_content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .er-cookies_content {
    padding: 0 0.5rem;
  }
}

@media (max-width: 320px) {
  .er-cookies_content {
    padding: 0 0.3rem;
  }
}

.er-age_verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 2rem;
}

.er-age_content {
  background: var(--er-vibrant-gradient1);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.er-age_content h2 {
  font-family: var(--er-heading-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-age_content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.er-age_buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.er-age_confirm {
  background: white;
  color: var(--er-neon-pink);
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.er-age_confirm:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.er-age_decline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.er-age_decline:hover {
  background: white;
  color: var(--er-neon-pink);
}

@media (max-width: 768px) {
  .er-age_content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .er-age_content h2 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .er-age_buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .er-age_content {
    padding: 1.5rem;
  }
  
  .er-age_content h2 {
    font-size: 1.8rem;
    min-height: 45px;
  }
}

.erpg-privacy_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding-top: 80px;
}

.erpg-privacy_hero {
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.erpg-privacy_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.erpg-privacy_hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-privacy_hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

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

.erpg-privacy_intro {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.erpg-privacy_intro i {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-privacy_intro h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-privacy_intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.erpg-privacy_points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.erpg-privacy_point {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #667eea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.erpg-point_header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.erpg-point_header i {
  font-size: 2.5rem;
  color: #667eea;
}

.erpg-point_header h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: #333;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.erpg-privacy_point p {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
}

.erpg-privacy_point a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.erpg-privacy_point a:hover {
  text-decoration: underline;
}

.erpg-privacy_contact {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  margin-top: 3rem;
}

.erpg-privacy_contact i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-privacy_contact h3 {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-privacy_contact p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.erpg-privacy_contact a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 600;
}

.erpg-privacy_contact a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .erpg-privacy_hero h1 {
    font-size: 3rem;
    min-height: 80px;
  }
  
  .erpg-privacy_intro h2 {
    font-size: 2.2rem;
    min-height: 55px;
  }
}

@media (max-width: 768px) {
  .erpg-privacy_container {
    padding: 0 1rem;
  }
  
  .erpg-privacy_hero {
    padding: 3rem 0;
  }
  
  .erpg-privacy_hero h1 {
    font-size: 2.5rem;
    min-height: 70px;
  }
  
  .erpg-privacy_intro {
    padding: 2rem;
  }
  
  .erpg-privacy_intro h2 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .erpg-privacy_point {
    padding: 2rem;
  }
  
  .erpg-point_header h3 {
    font-size: 1.6rem;
    min-height: 45px;
  }
}

@media (max-width: 480px) {
  .erpg-privacy_container {
    padding: 0 0.5rem;
  }
  
  .erpg-privacy_hero h1 {
    font-size: 2.2rem;
    min-height: 60px;
  }
  
  .erpg-privacy_intro h2 {
    font-size: 1.8rem;
    min-height: 45px;
  }
  
  .erpg-point_header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .erpg-point_header h3 {
    font-size: 1.5rem;
    min-height: 40px;
  }

  .erpg-privacy_contact {
    padding: 3rem 0.72rem;
  }
}

@media (max-width: 320px) {
  .erpg-privacy_container {
    padding: 0 0.3rem;
  }
  
  .erpg-privacy_hero h1 {
    font-size: 2rem;
    min-height: 55px;
  }
}

.erpg-terms_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding-top: 80px;
}

.erpg-terms_hero {
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.erpg-terms_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.erpg-terms_hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-terms_hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

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

.erpg-terms_intro {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.erpg-terms_intro i {
  font-size: 4rem;
  color: #f5576c;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-terms_intro h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-terms_intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.erpg-term_card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #f5576c;
}

.erpg-term_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.erpg-term_icon {
  margin-bottom: 1.5rem;
}

.erpg-term_icon i {
  font-size: 3.5rem;
  color: #f5576c;
  display: block;
}

.erpg-term_card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-term_card p {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
}

.erpg-terms_notes {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.erpg-note_box {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
}

.erpg-note_box i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-note_box h3 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-note_box p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}

.erpg-contact_info {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.erpg-contact_info i {
  font-size: 3rem;
  color: #f5576c;
  margin-bottom: 1rem;
  display: block;
}

.erpg-contact_info h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-contact_info p {
  color: #555;
  line-height: 1.6;
}

.erpg-contact_info a {
  color: #f5576c;
  text-decoration: none;
  font-weight: 600;
}

.erpg-contact_info a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .erpg-terms_hero h1 {
    font-size: 3rem;
    min-height: 80px;
  }
  
  .erpg-terms_intro h2 {
    font-size: 2.2rem;
    min-height: 55px;
  }
}

@media (max-width: 768px) {
  .erpg-terms_container {
    padding: 0 1rem;
  }
  
  .erpg-terms_hero {
    padding: 3rem 0;
  }
  
  .erpg-terms_hero h1 {
    font-size: 2.5rem;
    min-height: 70px;
  }
  
  .erpg-terms_intro {
    padding: 2rem;
  }
  
  .erpg-terms_intro h2 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .erpg-terms_grid {
    grid-template-columns: 1fr;
  }
  
  .erpg-term_card {
    padding: 2rem;
  }
  
  .erpg-term_card h3 {
    font-size: 1.6rem;
    min-height: 45px;
  }
  
  .erpg-terms_notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .erpg-terms_container {
    padding: 0 0.5rem;
  }
  
  .erpg-terms_hero h1 {
    font-size: 2.2rem;
    min-height: 60px;
  }
  
  .erpg-terms_intro h2 {
    font-size: 1.8rem;
    min-height: 45px;
  }
  
  .erpg-term_card h3 {
    font-size: 1.5rem;
    min-height: 40px;
  }
  
  .erpg-note_box h3 {
    font-size: 1.7rem;
    min-height: 45px;
  }

  .erpg-contact_info {
    padding: 2.5rem 0.5rem;
  }
}

@media (max-width: 320px) {
  .erpg-terms_container {
    padding: 0 0.3rem;
  }
  
  .erpg-terms_hero h1 {
    font-size: 2rem;
    min-height: 55px;
  }
}

.erpg-cookies_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding-top: 80px;
}

.erpg-cookies_hero {
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.erpg-cookies_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.erpg-cookies_hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-cookies_hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

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

.erpg-cookies_intro {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.erpg-cookies_intro i {
  font-size: 4rem;
  color: #4facfe;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-cookies_intro h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-cookies_intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.erpg-cookies_sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.erpg-cookie_section h3 {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #333;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  border-left: 5px solid #4facfe;
}

.erpg-cookie_points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.erpg-cookie_point {
  display: flex;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.erpg-cookie_point:hover {
  transform: translateY(-5px);
}

.erpg-cookie_point i {
  font-size: 2.5rem;
  color: #4facfe;
  flex-shrink: 0;
}

.erpg-cookie_point h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.erpg-cookie_point p {
  color: #555;
  line-height: 1.6;
}

.erpg-cookie_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.erpg-cookie_item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.erpg-cookie_item:hover {
  transform: translateY(-5px);
}

.erpg-cookie_item i {
  font-size: 3rem;
  color: #4facfe;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-cookie_item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-cookie_item p {
  color: #555;
  line-height: 1.6;
}

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

.erpg-option_card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.erpg-option_card:hover {
  transform: translateY(-5px);
}

.erpg-option_card i {
  font-size: 3rem;
  color: #4facfe;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-option_card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-option_card p {
  color: #555;
  line-height: 1.6;
}

.erpg-thirdparty_info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.erpg-thirdparty_item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.erpg-thirdparty_item:hover {
  transform: translateY(-5px);
}

.erpg-thirdparty_item i {
  font-size: 2.5rem;
  color: #4facfe;
  flex-shrink: 0;
}

.erpg-thirdparty_item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.erpg-thirdparty_item p {
  color: #555;
  line-height: 1.6;
}

.erpg-duration_types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.erpg-duration_card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.erpg-duration_card:hover {
  transform: translateY(-5px);
}

.erpg-duration_card i {
  font-size: 3rem;
  color: #4facfe;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-duration_card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-duration_card p {
  color: #555;
  line-height: 1.6;
}

.erpg-cookies_contact {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border-radius: 20px;
  margin-top: 3rem;
}

.erpg-cookies_contact i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-cookies_contact h3 {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-cookies_contact p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.erpg-cookies_contact a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 600;
}

.erpg-cookies_contact a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .erpg-cookies_hero h1 {
    font-size: 3rem;
    min-height: 80px;
  }
  
  .erpg-cookies_intro h2 {
    font-size: 2.2rem;
    min-height: 55px;
  }

  .erpg-management_options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .erpg-cookies_container {
    padding: 0 1rem;
  }
  
  .erpg-cookies_hero {
    padding: 3rem 0;
  }
  
  .erpg-cookies_hero h1 {
    font-size: 2.5rem;
    min-height: 70px;
  }
  
  .erpg-cookies_intro {
    padding: 2rem;
  }
  
  .erpg-cookies_intro h2 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .erpg-cookie_points,
  .erpg-cookie_list,
  .erpg-management_options,
  .erpg-thirdparty_info,
  .erpg-duration_types {
    grid-template-columns: 1fr;
  }
  
  .erpg-cookie_point {
    padding: 1.5rem;
  }
  
  .erpg-cookie_section h3 {
    font-size: 1.8rem;
    min-height: 45px;
  }
}

@media (max-width: 480px) {
  .erpg-cookies_container {
    padding: 0 0.5rem;
  }
  
  .erpg-cookies_hero h1 {
    font-size: 2.2rem;
    min-height: 60px;
  }
  
  .erpg-cookies_intro h2 {
    font-size: 1.8rem;
    min-height: 45px;
  }
  
  .erpg-cookie_point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .erpg-cookie_point h4 {
    min-height: 35px;
  }
  
  .erpg-cookie_section h3 {
    font-size: 1.6rem;
    min-height: 40px;
  }

  .erpg-cookies_contact {
    padding: 3rem 0.65rem;
  }
}

@media (max-width: 320px) {
  .erpg-cookies_container {
    padding: 0 0.3rem;
  }
  
  .erpg-cookies_hero h1 {
    font-size: 2rem;
    min-height: 55px;
  }
}

.erpg-responsible_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  padding-top: 80px;
}

.erpg-responsible_hero {
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.erpg-responsible_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.erpg-responsible_hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-responsible_hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

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

.erpg-responsible_intro {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.erpg-responsible_intro i {
  font-size: 4rem;
  color: #ff9a9e;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-responsible_intro h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-responsible_intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.erpg-feature_card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 5px solid #ff9a9e;
}

.erpg-feature_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.erpg-feature_icon {
  margin-bottom: 1.5rem;
}

.erpg-feature_icon i {
  font-size: 3.5rem;
  color: #ff9a9e;
  display: block;
}

.erpg-feature_card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-feature_card p {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
}

.erpg-resources_section {
  margin-bottom: 4rem;
}

.erpg-resources_section h3 {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #333;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.erpg-resources_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.erpg-resource_card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid #ff9a9e;
}

.erpg-resource_card:hover {
  transform: translateY(-5px);
}

.erpg-resource_card i {
  font-size: 3rem;
  color: #ff9a9e;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-resource_card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-resource_card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.erpg-resource_link {
  display: inline-block;
  background: #ff9a9e;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.erpg-resource_link:hover {
  background: #ff7b81;
  transform: scale(1.05);
}

.erpg-contact_support {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  border-radius: 20px;
}

.erpg-contact_support i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-contact_support h3 {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-contact_support p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.erpg-contact_support a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 600;
}

.erpg-contact_support a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .erpg-responsible_hero h1 {
    font-size: 3rem;
    min-height: 80px;
  }
  
  .erpg-responsible_intro h2 {
    font-size: 2.2rem;
    min-height: 55px;
  }
}

@media (max-width: 768px) {
  .erpg-responsible_container {
    padding: 0 1rem;
  }
  
  .erpg-responsible_hero {
    padding: 3rem 0;
  }
  
  .erpg-responsible_hero h1 {
    font-size: 2.5rem;
    min-height: 70px;
  }
  
  .erpg-responsible_intro {
    padding: 2rem;
  }
  
  .erpg-responsible_intro h2 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .erpg-responsible_features {
    grid-template-columns: 1fr;
  }
  
  .erpg-feature_card {
    padding: 2rem;
  }
  
  .erpg-feature_card h3 {
    font-size: 1.6rem;
    min-height: 45px;
  }
  
  .erpg-resources_grid {
    grid-template-columns: 1fr;
  }
  
  .erpg-resources_section h3 {
    font-size: 2rem;
    min-height: 45px;
  }
}

@media (max-width: 480px) {
  .erpg-responsible_container {
    padding: 0 0.5rem;
  }
  
  .erpg-responsible_hero h1 {
    font-size: 2.2rem;
    min-height: 60px;
  }
  
  .erpg-responsible_intro h2 {
    font-size: 1.8rem;
    min-height: 45px;
  }
  
  .erpg-feature_card h3 {
    font-size: 1.5rem;
    min-height: 40px;
  }
  
  .erpg-resource_card h4 {
    font-size: 1.4rem;
    min-height: 35px;
  }
  
  .erpg-resources_section h3 {
    font-size: 1.8rem;
    min-height: 40px;
  }

  .erpg-contact_support {
    padding: 3rem 0.7rem;
  }
}

@media (max-width: 320px) {
  .erpg-responsible_container {
    padding: 0 0.3rem;
  }
  
  .erpg-responsible_hero h1 {
    font-size: 2rem;
    min-height: 55px;
  }
}

.erpg-notfound_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding-top: 80px;
  display: flex;
  align-items: center;
}

.erpg-notfound_hero {
  padding: 4rem 0;
  width: 100%;
}

.erpg-notfound_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.erpg-notfound_content {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.erpg-notfound_icon {
  margin-bottom: 2rem;
}

.erpg-notfound_icon i {
  font-size: 6rem;
  color: #a8edea;
  display: block;
}

.erpg-notfound_content h1 {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #333;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-notfound_content p {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.erpg-notfound_image {
  margin-bottom: 3rem;
}

.erpg-notfound_image img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.erpg-home_button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.erpg-home_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.erpg-home_button i {
  font-size: 1.3rem;
}

.erpg-notfound_actions p {
  color: #888;
  font-size: 1.1rem;
  margin: 0;
}

.erpg-notfound_features {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.erpg-notfound_features h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.erpg-feature_item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.erpg-feature_item:hover {
  transform: translateY(-5px);
}

.erpg-feature_item i {
  font-size: 3rem;
  color: #a8edea;
  margin-bottom: 1.5rem;
  display: block;
}

.erpg-feature_item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erpg-feature_item p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .erpg-notfound_content h1 {
    font-size: 3.5rem;
    min-height: 70px;
  }
  
  .erpg-notfound_features h2 {
    font-size: 2.2rem;
    min-height: 55px;
  }
}

@media (max-width: 768px) {
  .erpg-notfound_container {
    padding: 0 1rem;
  }
  
  .erpg-notfound_content {
    padding: 3rem 2rem;
  }
  
  .erpg-notfound_content h1 {
    font-size: 3rem;
    min-height: 60px;
  }
  
  .erpg-notfound_features {
    padding: 2rem;
  }
  
  .erpg-notfound_features h2 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .erpg-features_grid {
    grid-template-columns: 1fr;
  }
  
  .erpg-feature_item {
    padding: 1.5rem;
  }
  
  .erpg-feature_item h3 {
    font-size: 1.4rem;
    min-height: 35px;
  }
}

@media (max-width: 480px) {
  .erpg-notfound_container {
    padding: 0 0.5rem;
  }
  
  .erpg-notfound_content {
    padding: 2rem 1.5rem;
  }
  
  .erpg-notfound_content h1 {
    font-size: 2.5rem;
    min-height: 50px;
  }
  
  .erpg-notfound_icon i {
    font-size: 5rem;
  }
  
  .erpg-notfound_content p {
    font-size: 1.1rem;
  }
  
  .erpg-home_button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .erpg-notfound_features h2 {
    font-size: 1.8rem;
    min-height: 45px;
  }
}

@media (max-width: 320px) {
  .erpg-notfound_container {
    padding: 0 0.3rem;
  }
  
  .erpg-notfound_content h1 {
    font-size: 2.2rem;
    min-height: 45px;
  }
}