.page--g-rules-types {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page--g-rules-types .highlight {
  color: #002060;
  font-weight: bold;
}

.page--g-rules-types__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #002060, #1a3a70);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page--g-rules-types__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page--g-rules-types__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page--g-rules-types__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page--g-rules-types__button {
  display: inline-block;
  background-color: #FFD700;
  color: #002060;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page--g-rules-types__button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page--g-rules-types__hero-image-container {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
  z-index: 0;
}

.page--g-rules-types__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page--g-rules-types__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page--g-rules-types__section-title {
  font-size: 2.2em;
  color: #002060;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page--g-rules-types__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page--g-rules-types__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

.page--g-rules-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page--g-rules-types__grid-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page--g-rules-types__grid-item:hover {
  transform: translateY(-10px);
}

.page--g-rules-types__grid-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page--g-rules-types__item-title {
  font-size: 1.5em;
  color: #002060;
  margin-bottom: 15px;
}

.page--g-rules-types__grid-item p {
  color: #666;
  font-size: 1em;
}

.page--g-rules-types__grid--breeds {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page--g-rules-types__breed-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
}

.page--g-rules-types__breed-card:hover {
  transform: translateY(-8px);
}

.page--g-rules-types__breed-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.page--g-rules-types__breed-title {
  font-size: 1.6em;
  color: #002060;
  margin-bottom: 10px;
  text-align: center;
}

.page--g-rules-types__breed-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page--g-rules-types__breed-card ul li {
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95em;
}

.page--g-rules-types__breed-card ul li b {
  color: #002060;
}

.page--g-rules-types__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page--g-rules-types__strategy-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page--g-rules-types__strategy-item:hover {
  transform: translateY(-10px);
}

.page--g-rules-types__strategy-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page--g-rules-types__cta {
  background: linear-gradient(90deg, #002060, #1a3a70);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.page--g-rules-types__cta .page--g-rules-types__section-title {
  color: #FFD700;
}

.page--g-rules-types__cta .page--g-rules-types__section-title::after {
  background-color: #FFD700;
}

.page--g-rules-types__cta .page--g-rules-types__description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page--g-rules-types__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page--g-rules-types__button--primary {
  background-color: #FFD700;
  color: #002060;
}

.page--g-rules-types__button--primary:hover {
  background-color: #e6c200;
}

.page--g-rules-types__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page--g-rules-types__button--secondary:hover {
  background-color: #FFD700;
  color: #002060;
}

.page--g-rules-types__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page--g-rules-types__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page--g-rules-types__faq-question {
  font-size: 1.3em;
  color: #002060;
  margin-bottom: 10px;
}

.page--g-rules-types__faq-answer {
  color: #666;
  font-size: 1em;
}

@media (max-width: 768px) {
  .page--g-rules-types__hero {
    padding: 40px 15px;
  }

  .page--g-rules-types__title {
    font-size: 2em;
  }

  .page--g-rules-types__subtitle {
    font-size: 1em;
  }

  .page--g-rules-types__section {
    padding: 40px 15px;
  }

  .page--g-rules-types__section-title {
    font-size: 1.8em;
  }

  .page--g-rules-types__grid, .page--g-rules-types__grid--breeds, .page--g-rules-types__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page--g-rules-types__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page--g-rules-types__button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page--g-rules-types__title {
    font-size: 1.7em;
  }

  .page--g-rules-types__section-title {
    font-size: 1.5em;
  }

  .page--g-rules-types__description {
    font-size: 0.95em;
  }

  .page--g-rules-types__grid-item, .page--g-rules-types__breed-card, .page--g-rules-types__strategy-item, .page--g-rules-types__faq-item {
    padding: 20px;
  }

  .page--g-rules-types__item-title, .page--g-rules-types__breed-title, .page--g-rules-types__faq-question {
    font-size: 1.2em;
  }
}