.RRPrivacyPage,
.RRTermsPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  padding: 60px 20px;
  background-color: var(--bg-color);
}

.RRPrivacyContainer,
.RRTermsContainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.06);
  overflow: hidden;
  background: #fff;
  animation: fadeInPrivacy 0.8s ease forwards;
}

.RRPrivacyContent,
.RRTermsContent {
  padding: 40px;
}

.RRPrivacyIntro,
.RRTermsIntro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(33, 40, 6, 0.1);
  padding-bottom: 30px;
  text-align: center;
  text-align: center;
}

.RRPrivacyIntro::after,
.RRTermsIntro::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.RRPrivacyTitle,
.RRTermsTitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 32px;
}

.RRPrivacyTitle i,
.RRTermsTitle i {
  opacity: 0.9;
  color: var(--accent-color);
  font-size: 28px;
}

.RRPrivacyDate,
.RRTermsDate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  padding: 6px 12px;
  color: var(--secondary-text-color);
  font-size: 14px;
  background: rgba(33, 40, 6, 0.05);
}

.RRPrivacyDate i,
.RRTermsDate i {
  color: var(--accent-color);
  font-size: 14px;
}

.RRPrivacySection,
.RRTermsSection {
  margin-bottom: 32px;
  border-bottom: 1px dashed rgba(33, 40, 6, 0.1);
  padding-bottom: 20px;
  opacity: 0;
  animation: slideInSection 0.6s ease forwards;
}

.RRPrivacySection:nth-child(1),
.RRTermsSection:nth-child(1) {
  animation-delay: 0.1s;
}

.RRPrivacySection:nth-child(2),
.RRTermsSection:nth-child(2) {
  animation-delay: 0.2s;
}

.RRPrivacySection:nth-child(3),
.RRTermsSection:nth-child(3) {
  animation-delay: 0.3s;
}

.RRPrivacySection:nth-child(4),
.RRTermsSection:nth-child(4) {
  animation-delay: 0.4s;
}

.RRPrivacySection:nth-child(5),
.RRTermsSection:nth-child(5) {
  animation-delay: 0.5s;
}

.RRPrivacySection:nth-child(6),
.RRTermsSection:nth-child(6) {
  animation-delay: 0.6s;
}

.RRPrivacySection:nth-child(7),
.RRTermsSection:nth-child(7) {
  animation-delay: 0.7s;
}

.RRPrivacySection:nth-child(8),
.RRTermsSection:nth-child(8) {
  animation-delay: 0.8s;
}

.RRPrivacySection:nth-child(9),
.RRTermsSection:nth-child(9) {
  animation-delay: 0.9s;
}

.RRPrivacySection:nth-child(10),
.RRTermsSection:nth-child(10) {
  animation-delay: 1s;
}

.RRPrivacySection:last-child,
.RRTermsSection:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.RRPrivacySectionTitle,
.RRTermsSectionTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s ease;
}

.RRPrivacySectionTitle i,
.RRTermsSectionTitle i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 20px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.RRPrivacySectionTitle:hover i,
.RRTermsSectionTitle:hover i {
  transform: rotate(10deg) scale(1.1);
}

.RRPrivacySectionContent,
.RRTermsSectionContent {
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
}

.RRPrivacySectionContent p,
.RRTermsSectionContent p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.RRPrivacySectionContent p:last-child,
.RRTermsSectionContent p:last-child {
  margin-bottom: 0;
}

.RRPrivacySectionContent p i,
.RRTermsSectionContent p i {
  margin-top: 4px;
  color: var(--accent-color);
  font-size: 16px;
}

.RRPrivacySectionContent ul,
.RRTermsSectionContent ul {
  margin-left: 0;
}

.RRPrivacySectionContent li,
.RRTermsSectionContent li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-left: 0;
}

.RRPrivacySectionContent li i,
.RRTermsSectionContent li i {
  margin-top: 4px;
  color: var(--accent-color);
  font-size: 16px;
}

.RRPrivacySectionContent a,
.RRTermsSectionContent a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.RRPrivacySectionContent a:hover,
.RRTermsSectionContent a:hover {
  color: #f7b801;
}


@keyframes fadeInPrivacy {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInSection {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@media (max-width: 768px) {

  .RRPrivacyPage,
  .RRTermsPage {
    margin-top: 60px;
    padding: 40px 16px;
  }

  .RRPrivacyContent,
  .RRTermsContent {
    padding: 30px 20px;
  }

  .RRPrivacyTitle,
  .RRTermsTitle {
    font-size: 28px;
  }

  .RRPrivacySectionTitle,
  .RRTermsSectionTitle {
    font-size: 20px;
  }

  .RRPrivacySectionContent,
  .RRTermsSectionContent {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .RRPrivacyPage,
  .RRTermsPage {
    padding: 30px 12px;
  }

  .RRPrivacyContent,
  .RRTermsContent {
    padding: 20px 16px;
  }

  .RRPrivacyTitle,
  .RRTermsTitle {
    flex-direction: column;
    gap: 8px;
    font-size: 24px;
  }

  .RRPrivacyDate,
  .RRTermsDate {
    font-size: 12px;
  }

  .RRPrivacySectionTitle,
  .RRTermsSectionTitle {
    font-size: 18px;
  }

  .RRPrivacySectionTitle i,
  .RRTermsSectionTitle i {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .RRPrivacySectionContent,
  .RRTermsSectionContent {
    font-size: 14px;
  }

  .RRPrivacySectionContent p,
  .RRTermsSectionContent p,
  .RRPrivacySectionContent li,
  .RRTermsSectionContent li {
    gap: 8px;
  }
}

.RRSectionContentEmail {
  display: inline-block !important;
}

@media (max-width: 425px) {
  .RRSectionContentContact {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}