﻿.RRSupportMain {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}

.RRSupportMain section {
  width: 100%;
  padding: 80px 20px;
}

.RRSupportMain section:nth-child(odd) {
  background-color: var(--bg-color);
}

.RRSupportMain section:nth-child(even) {
  background-color: rgba(33, 40, 6, 0.03);
}

[class*="RRSupport"][class$="Container"] {
  max-width: 1200px;
  margin: 0 auto;
}

[class*="RRSupport"][class$="Title"],
h2 {
  margin-bottom: 50px;
  opacity: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  animation: fadeInDown 0.8s ease forwards;
}

[class*="RRSupport"][class$="Title"] i,
h2 i {
  margin-right: 12px;
  color: var(--accent-color);
}

[class*="RRSupport"][class$="Btn"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 14px 28px;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateY(0);
}

[class*="RRSupport"][class$="Btn"]:hover {
  box-shadow: 0 10px 25px rgba(33, 40, 6, 0.25);
  transform: translateY(-3px);
}

[class*="RRSupport"][class$="Btn"] i {
  margin-right: 8px;
}


.RRSupportHeroSection {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--bg-color) 0%, rgba(33, 40, 6, 0.06) 100%);
}

.RRSupportHeroSection::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(33, 40, 6, 0.03) 0%, transparent 70%);
  animation: heroFloat 12s ease-in-out infinite;
}

.RRSupportHeroContainer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.RRSupportHeroTitle {
  margin-bottom: 24px;
  opacity: 0;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.2;
  animation: slideInUp 1s ease 0.2s forwards;
}

.RRSupportHeroTitle i {
  margin-right: 16px;
  color: var(--accent-color);
  animation: pulse 2s ease-in-out infinite;
}

.RRSupportHeroDesc {
  margin-bottom: 32px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  animation: slideInUp 1s ease 0.4s forwards;
}

.RRSupportHeroDesc i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRSupportHeroList {
  margin-bottom: 40px;
  opacity: 0;
  animation: slideInUp 1s ease 0.6s forwards;
}

.RRSupportHeroList li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px 0;
  color: var(--secondary-text-color);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.RRSupportHeroList li:hover {
  color: var(--accent-color);
  transform: translateX(12px);
}

.RRSupportHeroList li i {
  margin-right: 14px;
  color: var(--accent-color);
  font-size: 18px;
}

.RRSupportHeroCTA {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: slideInUp 1s ease 0.8s forwards;
}

.RRSupportHeroImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 30px auto 0;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(33, 40, 6, 0.15);
  opacity: 0;
  transition: all 0.6s ease;
  transform: rotate(-2deg);
  animation: scaleInRotate 1.2s ease 0.5s forwards;
}

.RRSupportHeroImg:hover {
  box-shadow: 0 35px 90px rgba(33, 40, 6, 0.2);
  transform: rotate(0deg) scale(1.03);
}


.RRSupportJourneySection {
  background: rgba(33, 40, 6, 0.03);
}

.RRSupportJourneyContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.RRSupportJourneyDesc {
  margin-bottom: 30px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  animation: slideInLeft 0.8s ease 0.2s forwards;
}

.RRSupportJourneyList {
  margin-bottom: 30px;
  counter-reset: journey-counter;
}

.RRSupportJourneyList li {
  position: relative;
  margin-bottom: 28px;
  border-radius: 16px;
  border-left: 4px solid transparent;
  padding: 24px 24px 24px 85px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.08);
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  transition: all 0.4s ease;
  animation: slideInLeft 0.6s ease forwards;
  counter-increment: journey-counter;
}

.RRSupportJourneyList li:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportJourneyList li:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportJourneyList li:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportJourneyList li:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportJourneyList li:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportJourneyList li:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportJourneyList li:nth-child(7) {
  animation-delay: 0.7s;
}

.RRSupportJourneyList li:nth-child(8) {
  animation-delay: 0.8s;
}

.RRSupportJourneyList li:hover {
  border-left-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: translateX(10px);
}

.RRSupportJourneyList li::before {
  content: counter(journey-counter);
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--bg-color);
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(33, 40, 6, 0.8) 100%);
}

.RRSupportJourneyList li i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRSupportJourneyList li b {
  color: var(--accent-color);
}

.RRSupportJourneyTips {
  border-radius: 16px;
  padding: 28px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.7;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(33, 40, 6, 0.8) 100%);
  animation: slideInRight 0.8s ease 0.3s forwards;
}

.RRSupportJourneyTips i {
  margin-right: 8px;
  color: var(--bg-color);
}

.RRSupportJourneyTips b {
  color: var(--bg-color);
}

.RRSupportJourneyTips {
  color: rgba(245, 238, 230, 0.9);
}

.RRSupportJourneyImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 30px auto 0;
  border-radius: 16px;
  opacity: 0;
  animation: fadeInScale 1s ease 0.5s forwards;
}


.RRSupportCommunitySection {
  background: var(--bg-color);
}

.RRSupportCommunityDesc {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.RRSupportCommunityGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.RRSupportCommunityCard {
  position: relative;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.08);
  opacity: 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.5s ease;
  animation: zoomIn 0.8s ease forwards;
}

.RRSupportCommunityCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportCommunityCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportCommunityCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportCommunityCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportCommunityCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportCommunityCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportCommunityCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), rgba(33, 40, 6, 0.6));
}

.RRSupportCommunityCard:hover {
  box-shadow: 0 25px 60px rgba(33, 40, 6, 0.15);
  transform: translateY(-12px) rotate(1deg);
}

.RRSupportCommunityImg {
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  border-radius: 16px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.RRSupportCommunityCard:hover .RRSupportCommunityImg {
  transform: scale(1.05);
}

.RRSupportCommunityCard h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

.RRSupportCommunityCard h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

.RRSupportCommunityCard p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.6;
}

.RRSupportCommunityCard ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 14px;
}

.RRSupportCommunityCard ul li i {
  color: var(--accent-color);
}

.RRSupportCommunityBtn {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.RRSupportCommunityCTA {
  border-radius: 16px;
  padding: 30px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  background: rgba(33, 40, 6, 0.05);
  animation: slideInUp 0.8s ease 0.5s forwards;
}

.RRSupportCommunityCTA i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRSupportCommunityCTA b {
  color: var(--accent-color);
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleInRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(-2deg);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}


.RRSupportLearningSection {
  background: rgba(33, 40, 6, 0.03);
}

.RRSupportLearningDesc {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.RRSupportLearningGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRSupportLearningCard {
  position: relative;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 12px 35px rgba(33, 40, 6, 0.08);
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: all 0.4s ease;
  animation: slideInUp 0.6s ease forwards;
}

.RRSupportLearningCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportLearningCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportLearningCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportLearningCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportLearningCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportLearningCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportLearningCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(145deg, rgba(33, 40, 6, 0.02) 0%, transparent 60%);
  transition: all 0.3s ease;
}

.RRSupportLearningCard:hover {
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: translateY(-8px);
}

.RRSupportLearningCard:hover::before {
  opacity: 1;
}

.RRSupportLearningCard>i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 30px;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(33, 40, 6, 0.8) 100%);
  transition: all 0.3s ease;
}

.RRSupportLearningCard:hover>i {
  transform: scale(1.1) rotate(10deg);
}

.RRSupportLearningCard h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRSupportLearningCard p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.6;
}

.RRSupportLearningCard ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 14px;
}

.RRSupportLearningCard ul li i {
  color: var(--accent-color);
}

.RRSupportLearningBtn {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.RRSupportLearningImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInScale 1s ease 0.5s forwards;
}


.RRSupportFamilySection {
  background: var(--bg-color);
}

.RRSupportFamilyDesc {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.RRSupportFamilyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRSupportFamilyCard {
  position: relative;
  border-radius: 20px;
  padding: 30px 25px;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: all 0.4s ease;
  animation: bounceInCard 0.8s ease forwards;
}

.RRSupportFamilyCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportFamilyCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportFamilyCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportFamilyCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportFamilyCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportFamilyCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportFamilyCard::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: radial-gradient(circle, rgba(33, 40, 6, 0.03) 0%, transparent 70%);
  transition: all 0.3s ease;
  animation: rotatePattern 8s linear infinite;
}

.RRSupportFamilyCard:hover {
  box-shadow: 0 25px 60px rgba(33, 40, 6, 0.15);
  transform: translateY(-10px) scale(1.02);
}

.RRSupportFamilyCard:hover::after {
  opacity: 1;
}

.RRSupportFamilyCard>i {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 32px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.RRSupportFamilyCard:hover>i {
  transform: scale(1.1);
}

.RRSupportFamilyCard h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

.RRSupportFamilyCard p {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
}

.RRSupportFamilyCard ul li {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 15px;
}

.RRSupportFamilyCard ul li i {
  color: var(--accent-color);
}

.RRSupportFamilyBtn {
  position: relative;
  z-index: 2;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.RRSupportFamilyImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInScale 1s ease 0.5s forwards;
}


.RRSupportFestivalSection {
  background: rgba(33, 40, 6, 0.03);
}

.RRSupportFestivalDesc {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.RRSupportFestivalGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRSupportFestivalCard {
  position: relative;
  border-radius: 18px;
  padding: 28px 24px;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, rgba(245, 238, 230, 0.2) 100%);
  transition: all 0.4s ease;
  animation: slideInUp 0.6s ease forwards;
}

.RRSupportFestivalCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportFestivalCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportFestivalCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportFestivalCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportFestivalCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportFestivalCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportFestivalCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(33, 40, 6, 0.05), transparent);
  transition: all 0.5s ease;
}

.RRSupportFestivalCard:hover {
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: translateY(-8px);
}

.RRSupportFestivalCard:hover::before {
  left: 100%;
}

.RRSupportFestivalCard>i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 30px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.RRSupportFestivalCard:hover>i {
  transform: scale(1.1);
}

.RRSupportFestivalCard h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRSupportFestivalCard p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.6;
}

.RRSupportFestivalCard ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 14px;
}

.RRSupportFestivalCard ul li i {
  color: var(--accent-color);
}

.RRSupportFestivalBtn {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.RRSupportFestivalImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInScale 1s ease 0.5s forwards;
}


.RRSupportCollectorSection {
  background: var(--bg-color);
}

.RRSupportCollectorDesc {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.RRSupportCollectorGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRSupportCollectorCard {
  position: relative;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.08);
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: all 0.5s ease;
  animation: slideInUp 0.6s ease forwards;
}

.RRSupportCollectorCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportCollectorCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportCollectorCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportCollectorCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportCollectorCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportCollectorCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportCollectorCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(33, 40, 6, 0.02) 180deg, transparent 360deg);
  transition: all 0.3s ease;
  animation: rotateSlow 20s linear infinite;
}

.RRSupportCollectorCard:hover {
  box-shadow: 0 25px 60px rgba(33, 40, 6, 0.15);
  transform: translateY(-10px);
}

.RRSupportCollectorCard:hover::before {
  opacity: 1;
}

.RRSupportCollectorCard>i {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(33, 40, 6, 0.8) 100%);
  transition: all 0.3s ease;
}

.RRSupportCollectorCard:hover>i {
  transform: scale(1.1);
}

.RRSupportCollectorCard h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

.RRSupportCollectorCard p {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
}

.RRSupportCollectorCard ul li {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 15px;
}

.RRSupportCollectorCard ul li i {
  color: var(--accent-color);
}

.RRSupportCollectorBtn {
  position: relative;
  z-index: 2;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.RRSupportCollectorImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInScale 1s ease 0.5s forwards;
}


@keyframes bounceInCard {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotatePattern {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


.RRSupportClubsSection {
  position: relative;
  overflow: hidden;
  background: rgba(33, 40, 6, 0.03);
}

.RRSupportClubsSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 25%, rgba(33, 40, 6, 0.01) 50%, transparent 75%);
  animation: diagonalMove 15s linear infinite;
}

.RRSupportClubsContainer {
  position: relative;
  z-index: 2;
}

.RRSupportClubsDesc {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.RRSupportClubsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRSupportClubsCard {
  position: relative;
  border-radius: 16px;
  padding: 28px 24px;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: all 0.4s ease;
  animation: slideInUp 0.6s ease forwards;
}

.RRSupportClubsCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportClubsCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportClubsCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportClubsCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportClubsCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportClubsCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportClubsCard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(33, 40, 6, 0.02) 50%, transparent 100%);
  transition: all 0.3s ease;
}

.RRSupportClubsCard:hover {
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: translateY(-8px) rotate(1deg);
}

.RRSupportClubsCard:hover::after {
  opacity: 1;
}

.RRSupportClubsCard>i {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 30px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.RRSupportClubsCard:hover>i {
  transform: scale(1.1);
}

.RRSupportClubsCard h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRSupportClubsCard p {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.6;
}

.RRSupportClubsCard ul li {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 14px;
}

.RRSupportClubsCard ul li i {
  color: var(--accent-color);
}

.RRSupportClubsBtn {
  position: relative;
  z-index: 2;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.RRSupportClubsImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInScale 1s ease 0.5s forwards;
}


.RRSupportExpertSection {
  background: var(--bg-color);
}

.RRSupportExpertDesc {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.RRSupportExpertGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRSupportExpertCard {
  position: relative;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.08);
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, rgba(245, 238, 230, 0.1) 100%);
  transition: all 0.5s ease;
  animation: slideInUp 0.6s ease forwards;
}

.RRSupportExpertCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportExpertCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportExpertCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportExpertCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportExpertCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportExpertCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportExpertCard::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, transparent, rgba(33, 40, 6, 0.03), transparent);
  transition: all 0.5s ease;
}

.RRSupportExpertCard:hover {
  box-shadow: 0 25px 60px rgba(33, 40, 6, 0.15);
  transform: translateY(-10px);
}

.RRSupportExpertCard:hover::before {
  top: 100%;
}

.RRSupportExpertCard>i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(33, 40, 6, 0.8) 100%);
  transition: all 0.3s ease;
}

.RRSupportExpertCard:hover>i {
  transform: scale(1.1) rotate(-10deg);
}

.RRSupportExpertCard h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

.RRSupportExpertCard p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
}

.RRSupportExpertCard ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 15px;
}

.RRSupportExpertCard ul li i {
  color: var(--accent-color);
}

.RRSupportExpertBtn {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.RRSupportExpertImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInScale 1s ease 0.5s forwards;
}


.RRSupportContactSection {
  background: rgba(33, 40, 6, 0.03);
}

.RRSupportContactDesc {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.RRSupportContactContent {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
  gap: 60px;
  margin-bottom: 50px;
}

.RRSupportContactList {
  display: grid;
  gap: 24px;
}

.RRSupportContactList li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(33, 40, 6, 0.08);
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease forwards;
}

.RRSupportContactList li:nth-child(1) {
  animation-delay: 0.1s;
}

.RRSupportContactList li:nth-child(2) {
  animation-delay: 0.2s;
}

.RRSupportContactList li:nth-child(3) {
  animation-delay: 0.3s;
}

.RRSupportContactList li:nth-child(4) {
  animation-delay: 0.4s;
}

.RRSupportContactList li:nth-child(5) {
  animation-delay: 0.5s;
}

.RRSupportContactList li:nth-child(6) {
  animation-delay: 0.6s;
}

.RRSupportContactList li:hover {
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.15);
  transform: translateX(10px);
}

.RRSupportContactList li i {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 18px;
  background: var(--accent-color);
}

.RRSupportContactLink {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.RRSupportContactLink:hover {
  color: rgba(33, 40, 6, 0.8);
  text-decoration: underline;
}

.RRSupportContactImg {
  width: 100%;
  height: auto;
  border-radius: 20px;
  opacity: 0;
  animation: slideInRight 0.8s ease 0.3s forwards;
}

.RRSupportFAQBlock {
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(33, 40, 6, 0.08);
  opacity: 0;
  background: #fff;
  animation: slideInUp 0.8s ease 0.5s forwards;
}

.RRSupportFAQTitle {
  margin-bottom: 30px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
}

.RRSupportFAQTitle i {
  margin-right: 12px;
  color: var(--accent-color);
}

.RRSupportFAQList {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.RRSupportFAQList li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  background: rgba(33, 40, 6, 0.02);
  transition: all 0.3s ease;
}

.RRSupportFAQList li:hover {
  background: rgba(33, 40, 6, 0.05);
  transform: translateX(5px);
}

.RRSupportFAQList li i {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--accent-color);
  font-size: 18px;
}

.RRSupportFAQList li b {
  color: var(--accent-color);
}

.RRSupportFAQBtn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}


@keyframes diagonalMove {
  0% {
    transform: translateX(-100px) translateY(-100px);
  }

  100% {
    transform: translateX(100px) translateY(100px);
  }
}


@media (max-width: 1200px) {
  [class*="RRSupport"][class$="Container"] {
    max-width: 960px;
  }

  .RRSupportCommunityGrid,
  .RRSupportLearningGrid,
  .RRSupportFamilyGrid,
  .RRSupportFestivalGrid,
  .RRSupportCollectorGrid,
  .RRSupportClubsGrid,
  .RRSupportExpertGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .RRSupportMain section {
    padding: 60px 20px;
  }

  [class*="RRSupport"][class$="Title"],
  h2 {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .RRSupportHeroContainer,
  .RRSupportJourneyContainer,
  .RRSupportContactContent {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .RRSupportHeroTitle {
    font-size: 38px;
  }

  .RRSupportCommunityGrid,
  .RRSupportLearningGrid,
  .RRSupportFamilyGrid,
  .RRSupportFestivalGrid,
  .RRSupportCollectorGrid,
  .RRSupportClubsGrid,
  .RRSupportExpertGrid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .RRSupportMain {
    margin-top: 60px;
  }

  .RRSupportMain section {
    padding: 50px 16px;
  }

  [class*="RRSupport"][class$="Title"],
  h2 {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .RRSupportHeroTitle {
    font-size: 32px;
  }

  .RRSupportHeroDesc,
  .RRSupportJourneyDesc,
  .RRSupportCommunityDesc,
  .RRSupportLearningDesc,
  .RRSupportFamilyDesc,
  .RRSupportFestivalDesc,
  .RRSupportCollectorDesc,
  .RRSupportClubsDesc,
  .RRSupportExpertDesc,
  .RRSupportContactDesc {
    font-size: 16px;
  }

  .RRSupportHeroCTA {
    flex-direction: column;
    gap: 16px;
  }

  .RRSupportJourneyList li {
    padding: 20px 20px 20px 75px;
  }

  .RRSupportJourneyList li::before {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .RRSupportCommunityCard,
  .RRSupportLearningCard,
  .RRSupportFamilyCard,
  .RRSupportFestivalCard,
  .RRSupportCollectorCard,
  .RRSupportClubsCard,
  .RRSupportExpertCard {
    padding: 24px 20px;
  }

  .RRSupportCommunityImg {
    height: 180px;
  }

  .RRSupportFAQBlock {
    padding: 30px 20px;
  }

  .RRSupportFAQTitle {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .RRSupportMain section {
    padding: 40px 12px;
  }

  [class*="RRSupport"][class$="Title"],
  h2 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .RRSupportHeroTitle {
    font-size: 28px;
    line-height: 1.3;
  }

  .RRSupportHeroDesc,
  .RRSupportJourneyDesc,
  .RRSupportCommunityDesc,
  .RRSupportLearningDesc,
  .RRSupportFamilyDesc,
  .RRSupportFestivalDesc,
  .RRSupportCollectorDesc,
  .RRSupportClubsDesc,
  .RRSupportExpertDesc,
  .RRSupportContactDesc {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .RRSupportHeroList li {
    font-size: 14px;
  }

  [class*="RRSupport"][class$="Btn"] {
    padding: 12px 20px;
    font-size: 14px;
  }

  .RRSupportJourneyList li {
    padding: 16px 16px 16px 65px;
    font-size: 14px;
  }

  .RRSupportJourneyList li::before {
    top: 16px;
    left: 16px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .RRSupportCommunityCard,
  .RRSupportLearningCard,
  .RRSupportFamilyCard,
  .RRSupportFestivalCard,
  .RRSupportCollectorCard,
  .RRSupportClubsCard,
  .RRSupportExpertCard {
    padding: 20px 16px;
  }

  .RRSupportCommunityImg {
    height: 150px;
  }

  .RRSupportLearningCard>i,
  .RRSupportFamilyCard>i,
  .RRSupportFestivalCard>i,
  .RRSupportCollectorCard>i,
  .RRSupportClubsCard>i,
  .RRSupportExpertCard>i {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .RRSupportCommunityCard h3,
  .RRSupportLearningCard h3,
  .RRSupportFamilyCard h3,
  .RRSupportFestivalCard h3,
  .RRSupportCollectorCard h3,
  .RRSupportClubsCard h3,
  .RRSupportExpertCard h3 {
    font-size: 18px;
  }

  .RRSupportCommunityCard p,
  .RRSupportLearningCard p,
  .RRSupportFamilyCard p,
  .RRSupportFestivalCard p,
  .RRSupportCollectorCard p,
  .RRSupportClubsCard p,
  .RRSupportExpertCard p {
    font-size: 14px;
  }

  .RRSupportContactList li {
    padding: 16px;
    font-size: 14px;
  }

  .RRSupportContactList li i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .RRSupportFAQBlock {
    padding: 24px 16px;
  }

  .RRSupportFAQTitle {
    font-size: 20px;
  }

  .RRSupportFAQList li {
    padding: 16px;
    font-size: 14px;
  }

  .RRSupportJourneyTips {
    padding: 20px;
    font-size: 14px;
  }
}