﻿.RRAboutRoot {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

section {
  width: 100%;
  padding: 60px 20px;
}

section:nth-child(odd) {
  background-color: var(--bg-color);
}

section:nth-child(even) {
  background-color: rgba(33, 40, 6, 0.05);
}

[class$="Container"] {
  max-width: 1200px;
  margin: 0 auto;
}

[class$="Title"] {
  margin-bottom: 40px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

[class$="Title"] i {
  margin-right: 10px;
  color: var(--accent-color);
}

[class$="Desc"] {
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

[class$="Desc"] i {
  margin-right: 8px;
  color: var(--accent-color);
}


[class$="Card"] {
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: #fff;
  transition: all 0.3s ease;
}

[class$="Card"]:hover {
  box-shadow: 0 15px 35px rgba(33, 40, 6, 0.15);
  transform: translateY(-10px);
}

[class$="Img"] {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

[class$="Card"] h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

[class$="Card"] h3 i {
  margin-right: 8px;
}

[class$="Card"] ul {
  margin-bottom: 16px;
}

[class$="Card"] ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 15px;
}

[class$="Card"] ul li i {
  min-width: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

[class$="Card"] p {
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}


.RRAboutWelcomeSection {
  display: flex;
  align-items: center;
  min-height: 85vh;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--bg-color), rgba(33, 40, 6, 0.05));
}

.RRAboutWelcomeTitle {
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 1.2;
}

.RRAboutWelcomeDesc {
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.RRAboutWelcomeStats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.RRAboutWelcomeStats li {
  border-radius: 30px;
  padding: 12px 20px;
  box-shadow: 0 10px 20px rgba(33, 40, 6, 0.1);
  color: var(--secondary-text-color);
  font-size: 16px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRAboutWelcomeStats li:hover {
  box-shadow: 0 15px 25px rgba(33, 40, 6, 0.15);
  transform: translateY(-5px);
}

.RRAboutWelcomeStats li i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRAboutWelcomeCTA {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.RRAboutWelcomeBtn {
  display: inline-block;
  border-radius: 8px;
  padding: 14px 28px;
  box-shadow: 0 10px 20px rgba(33, 40, 6, 0.15);
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.RRAboutWelcomeBtn:hover {
  box-shadow: 0 15px 30px rgba(33, 40, 6, 0.2);
  transform: translateY(-5px);
}

.RRAboutWelcomeBtn i {
  margin-right: 8px;
}

.RRAboutWelcomeImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.1);
  transition: all 0.3s ease;
}

.RRAboutWelcomeImg:hover {
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: scale(1.02);
}


.RRAboutJourneySection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRAboutJourneyTimeline {
  position: relative;
  padding-left: 30px;
}

.RRAboutJourneyTimeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background-color: var(--accent-color);
}

.RRAboutJourneyMilestone {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: #fff;
}

.RRAboutJourneyMilestone::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -30px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.RRAboutJourneyMilestone>i {
  position: absolute;
  top: 22px;
  left: -38px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-color);
  color: var(--accent-color);
  font-size: 14px;
  background-color: var(--bg-color);
}

.RRAboutJourneyYear {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 5px 15px;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
  background-color: var(--accent-color);
}

.RRAboutJourneyMilestone h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 24px;
}

.RRAboutJourneyMilestone p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
}

.RRAboutJourneyMilestone ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.RRAboutJourneyMilestone ul li {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 8px 15px;
  color: var(--secondary-text-color);
  font-size: 14px;
  background-color: rgba(33, 40, 6, 0.05);
}

.RRAboutJourneyMilestone ul li i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRAboutJourneyImg {
  width: 100%;
  height: 100%;
  max-height: 400px;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.RRAboutJourneyImg:hover {
  transform: scale(1.03);
}


.RRAboutValuesSection {
  background-color: var(--bg-color);
}

.RRAboutValuesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.RRAboutValueCard {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.08);
  text-align: center;
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRAboutValueCard:hover {
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.12);
  transform: translateY(-10px);
}

.RRAboutValueCard>i {
  display: inline-block;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 28px;
  line-height: 70px;
  background-color: rgba(33, 40, 6, 0.05);
  transition: all 0.3s ease;
}

.RRAboutValueCard:hover>i {
  color: var(--bg-color);
  background-color: var(--accent-color);
  transform: rotateY(180deg);
}

.RRAboutValueCard h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRAboutValueCard p {
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
}


.RRAboutTeamSection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRAboutTeamGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 425px) {
  .RRAboutTeamGrid {
    grid-template-columns: 1fr;
  }
}

.RRAboutTeamCard {
  border-top: 4px solid var(--accent-color);
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(33, 40, 6, 0.02), #fff);
}

.RRAboutTeamImg {
  height: 300px;
  transition: all 0.5s ease;
}

.RRAboutTeamCard:hover .RRAboutTeamImg {
  transform: scale(1.05);
}


.RRAboutAmbassadorsSection {
  background-color: var(--bg-color);
}

.RRAboutAmbassadorsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 425px) {
  .RRAboutAmbassadorsGrid {
    grid-template-columns: 1fr;
  }
}

.RRAboutAmbassadorCard {
  border-radius: 12px;
  border-left: 5px solid #9C27B0;
  background: linear-gradient(to right, rgba(156, 39, 176, 0.05), #fff);
}

.RRAboutAmbassadorImg {
  height: 300px;
  border-top-right-radius: 12px;
}

.RRAboutAmbassadorCard ul li i {
  color: #9C27B0;
}

.RRAboutAmbassadorsQuotes {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 24px;
  color: var(--bg-color);
  font-size: 20px;
  font-style: italic;
  text-align: center;
  background-color: var(--accent-color);
}

.RRAboutAmbassadorsQuotes i {
  margin: 0 8px;
  color: rgba(245, 238, 230, 0.7);
}


.RRAboutImpactSection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRAboutImpactGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.RRAboutImpactCard {
  border-radius: 12px;
  border-bottom: 4px solid #4CAF50;
  background: linear-gradient(to top, rgba(76, 175, 80, 0.05), #fff);
}

.RRAboutImpactCard ul li i {
  color: #4CAF50;
}


.RRAboutInnovationSection {
  background-color: var(--bg-color);
}

.RRAboutInnovationGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.RRAboutInnovationCard {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, rgba(33, 150, 243, 0.05));
}

.RRAboutInnovationCard::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  z-index: 1;
  width: 100px;
  height: 100px;
  background-color: #2196F3;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}

.RRAboutInnovationCard:hover::after {
  width: 120px;
  height: 120px;
}

.RRAboutInnovationCard ul li i {
  color: #2196F3;
}


.RRAboutIndiaSection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRAboutIndiaGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.RRAboutIndiaCard {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.08);
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRAboutIndiaCard:hover {
  box-shadow: 0 15px 35px rgba(33, 40, 6, 0.12);
  transform: translateY(-8px);
}

.RRAboutIndiaImg {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}

.RRAboutIndiaCard h3 {
  margin-bottom: 12px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}

.RRAboutIndiaCard h3 i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRAboutIndiaCard p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 14px;
  line-height: 1.5;
}

.RRAboutIndiaCard ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.RRAboutIndiaCard ul li {
  display: flex;
  align-items: center;
  color: var(--secondary-text-color);
  font-size: 13px;
}

.RRAboutIndiaCard ul li i {
  min-width: 14px;
  margin-right: 6px;
  color: var(--accent-color);
}


.RRAboutCommunitySection {
  background-color: var(--bg-color);
}

.RRAboutCommunityGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRAboutCommunityCard {
  border-radius: 12px;
  border-top: 4px solid #FF9800;
  background: linear-gradient(to bottom, rgba(255, 152, 0, 0.05), #fff);
}

.RRAboutCommunityCard ul li i {
  color: #FF9800;
}

.RRAboutCommunityClubs {
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: rgba(33, 40, 6, 0.05);
}

.RRAboutCommunityClubs h4 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRAboutCommunityClubs h4 i {
  margin-right: 8px;
  color: #FF9800;
}

.RRAboutCommunityClubs ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.RRAboutCommunityClubs ul li {
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(33, 40, 6, 0.1);
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.5;
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRAboutCommunityClubs ul li:hover {
  box-shadow: 0 10px 20px rgba(33, 40, 6, 0.15);
  transform: translateY(-5px);
}

.RRAboutCommunityFeedback {
  border-radius: 12px;
  padding: 20px;
  color: var(--secondary-text-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: rgba(255, 152, 0, 0.1);
}

.RRAboutCommunityFeedback i {
  margin-right: 10px;
  color: #FF9800;
  font-size: 20px;
}


.RRAboutContactSection {
  text-align: center;
  background-color: rgba(33, 40, 6, 0.05);
}

.RRAboutContactList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.RRAboutContactList li {
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 25px rgba(33, 40, 6, 0.1);
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRAboutContactList li:hover {
  box-shadow: 0 15px 35px rgba(33, 40, 6, 0.15);
  transform: translateY(-8px);
}

.RRAboutContactList li i {
  display: block;
  margin: 0 auto 8px;
  color: var(--accent-color);
  font-size: 24px;
}

.RRAboutContactCTA {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.RRAboutContactBtn {
  border-radius: 8px;
  padding: 14px 28px;
  box-shadow: 0 10px 20px rgba(33, 40, 6, 0.15);
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.RRAboutContactBtn:hover {
  box-shadow: 0 15px 30px rgba(33, 40, 6, 0.2);
  transform: translateY(-5px);
}

.RRAboutContactBtn i {
  margin-right: 8px;
}

.RRAboutContactFAQ {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  text-align: left;
  background-color: var(--bg-color);
}

.RRAboutContactFAQ h4 {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.RRAboutContactFAQ h4 i {
  margin-right: 8px;
}

.RRAboutContactFAQ ul li {
  margin-bottom: 12px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRAboutContactFAQ ul li b {
  color: var(--accent-color);
  font-weight: 600;
}

.RRAboutContactInfo {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: #fff;
}

.RRAboutContactInfo p {
  margin-bottom: 12px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRAboutContactInfo p i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRAboutContactInfo a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.RRAboutContactInfo a:hover {
  text-decoration: underline;
}


.RRAboutFormSection {
  background-color: var(--bg-color);
}

.RRAboutContactForm {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.1);
  background-color: #fff;
}

.RRAboutFormGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.RRAboutFormGroup {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.RRAboutFormLabel {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
}

.RRAboutFormLabel i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRAboutFormInput {
  border: 2px solid rgba(33, 40, 6, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRAboutFormInput:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(33, 40, 6, 0.1);
  outline: none;
}

.RRAboutFormInput::placeholder {
  color: rgba(102, 102, 102, 0.7);
}

.RRAboutFormTextarea {
  min-height: 120px;
  resize: vertical;
}

.RRAboutFormCheckbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.RRAboutFormCheckboxInput {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.RRAboutFormCheckboxLabel {
  flex: 1;
  margin-bottom: 0;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
}

.RRAboutFormCheckboxLabel i {
  margin-right: 6px;
  color: var(--accent-color);
}

.RRAboutFormCheckboxLabel a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.RRAboutFormCheckboxLabel a:hover {
  text-decoration: underline;
}

.RRAboutFormSubmit {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.RRAboutFormBtn {
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  box-shadow: 0 10px 25px rgba(33, 40, 6, 0.15);
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.RRAboutFormBtn:hover {
  box-shadow: 0 15px 35px rgba(33, 40, 6, 0.2);
  transform: translateY(-3px);
}

.RRAboutFormBtn:active {
  transform: translateY(-1px);
}

.RRAboutFormBtn i {
  margin-right: 8px;
}


@media (max-width: 1200px) {
  [class$="Container"] {
    padding: 0 20px;
  }

  .RRAboutValuesGrid,
  .RRAboutImpactGrid,
  .RRAboutInnovationGrid,
  .RRAboutCommunityGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .RRAboutIndiaGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .RRAboutContactList {
    grid-template-columns: repeat(3, 1fr);
  }

  .RRAboutContactForm {
    padding: 30px;
  }

  .RRAboutFormGrid {
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .RRAboutRoot {
    gap: 60px;
  }

  section {
    padding: 50px 20px;
  }

  [class$="Title"] {
    font-size: 32px;
  }

  [class$="Desc"] {
    font-size: 16px;
  }

  .RRAboutWelcomeTitle {
    font-size: 36px;
  }

  .RRAboutIndiaGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .RRAboutContactList {
    grid-template-columns: repeat(2, 1fr);
  }

  .RRAboutCommunityClubs ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .RRAboutContactForm {
    padding: 25px;
  }

  .RRAboutFormBtn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .RRAboutRoot {
    gap: 40px;
  }

  section {
    padding: 40px 15px;
  }

  [class$="Title"] {
    margin-bottom: 30px;
    font-size: 28px;
  }

  [class$="Desc"] {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .RRAboutValuesGrid,
  .RRAboutImpactGrid,
  .RRAboutInnovationGrid,
  .RRAboutIndiaGrid,
  .RRAboutCommunityGrid {
    grid-template-columns: 1fr;
  }

  .RRAboutContactList {
    grid-template-columns: 1fr;
  }

  .RRAboutWelcomeStats {
    flex-direction: column;
    align-items: center;
  }

  .RRAboutWelcomeStats li {
    width: 100%;
    text-align: center;
  }

  .RRAboutWelcomeCTA {
    flex-direction: column;
  }

  .RRAboutWelcomeBtn {
    width: 100%;
    text-align: center;
  }

  .RRAboutCommunityClubs ul {
    grid-template-columns: 1fr;
  }

  .RRAboutContactCTA {
    flex-direction: column;
  }

  .RRAboutContactBtn {
    width: 100%;
  }

  .RRAboutJourneyMilestone ul {
    flex-direction: column;
  }

  .RRAboutJourneyMilestone ul li {
    width: 100%;
  }

  .RRAboutContactForm {
    padding: 20px;
  }

  .RRAboutFormGrid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .RRAboutFormGroup {
    margin-bottom: 15px;
  }

  .RRAboutFormBtn {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .RRAboutRoot {
    gap: 30px;
  }

  section {
    padding: 30px 10px;
  }

  [class$="Title"] {
    margin-bottom: 20px;
    font-size: 24px;
  }

  [class$="Desc"] {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .RRAboutWelcomeTitle {
    font-size: 28px;
  }

  .RRAboutJourneyMilestone {
    padding: 20px;
  }

  .RRAboutJourneyMilestone>i {
    top: 19px;
    left: -35px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .RRAboutJourneyYear {
    padding: 4px 12px;
    font-size: 14px;
  }

  .RRAboutJourneyMilestone h3 {
    font-size: 20px;
  }

  .RRAboutAmbassadorsQuotes {
    padding: 15px;
    font-size: 16px;
  }

  [class$="Card"] {
    padding: 15px;
  }

  [class$="Card"] h3 {
    font-size: 18px;
  }

  .RRAboutContactForm {
    padding: 15px;
  }

  .RRAboutFormInput {
    padding: 10px 12px;
    font-size: 15px;
  }

  .RRAboutFormLabel {
    font-size: 15px;
  }

  .RRAboutFormCheckboxLabel {
    font-size: 14px;
  }

  .RRAboutFormBtn {
    padding: 10px 16px;
    font-size: 14px;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.5s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}