﻿.playforge-about-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}


.playforge-vision-section {
  position: relative;
  width: 100%;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-vision-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-vision-inner {
  flex: 1;
}

.playforge-vision-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

.playforge-vision-title i {
  color: var(--accent-color);
  font-size: 2.2rem;
}

.playforge-vision-text {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.5;
}

.playforge-vision-text i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-vision-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.playforge-vision-img:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.03) translateY(-5px);
}


.playforge-impact-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-impact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-impact-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-impact-title i {
  color: #4a6bdf;
}

.playforge-impact-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.playforge-impact-content p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.playforge-impact-content p i {
  margin-top: 3px;
  color: #4a6bdf;
  font-size: 1.1rem;
}

.playforge-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.playforge-impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-impact-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-impact-item i {
  margin-bottom: 20px;
  color: #4a6bdf;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-impact-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-impact-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-impact-item:hover h3 {
  color: #4a6bdf;
}

.playforge-impact-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}


.playforge-journey-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-journey-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-journey-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-journey-title i {
  color: #e84393;
}

.playforge-journey-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.playforge-journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background: #e84393;
  transform: translateX(-50%);
}

.playforge-journey-milestone {
  position: relative;
  width: 50%;
  margin-bottom: 50px;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-journey-milestone:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.playforge-journey-milestone:nth-child(odd) {
  left: 0;
}

.playforge-journey-milestone:nth-child(even) {
  left: 50%;
}

.playforge-journey-milestone::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e84393;
}

.playforge-journey-milestone:nth-child(odd)::before {
  right: -10px;
}

.playforge-journey-milestone:nth-child(even)::before {
  left: -10px;
}

.playforge-journey-milestone i {
  display: block;
  margin-bottom: 15px;
  color: #e84393;
  font-size: 2rem;
}

.playforge-journey-year {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 20px;
  padding: 5px 12px;
  color: #e84393;
  font-weight: 600;
  background: rgba(232, 67, 147, 0.1);
}

.playforge-journey-milestone h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.playforge-journey-milestone p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-journey-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.playforge-journey-img:hover {
  transform: scale(1.05);
}


.playforge-offerings-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-offerings-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-offerings-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-offerings-title i {
  color: #fdcb6e;
}

.playforge-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-offerings-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-offerings-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fdcb6e, transparent);
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}

.playforge-offerings-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-offerings-item:hover::after {
  transform: translateX(0);
}

.playforge-offerings-item i {
  margin-bottom: 20px;
  color: #fdcb6e;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-offerings-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-offerings-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-offerings-item:hover h3 {
  color: #fdcb6e;
}

.playforge-offerings-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}


.playforge-community-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-community-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-community-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-community-title i {
  color: #ff6b6b;
}

.playforge-community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-community-item {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-community-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-community-item i {
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 20px;
  color: #ff6b6b;
  font-size: 2.2rem;
}

.playforge-community-item h3 {
  margin-bottom: 10px;
  padding: 0 20px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-community-item:hover h3 {
  color: #ff6b6b;
}

.playforge-community-item p {
  padding: 0 20px 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-community-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.playforge-community-item:hover .playforge-community-img {
  transform: scale(1.05);
}

.playforge-community-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: white;
}

.playforge-community-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  text-align: center;
}

.playforge-community-stats i {
  margin-bottom: 10px;
  color: #ff6b6b;
  font-size: 2rem;
}

.playforge-community-stats span {
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 1.1rem;
}


.playforge-tech-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-tech-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-tech-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-tech-title i {
  color: #6c5ce7;
}

.playforge-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-tech-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-tech-item i {
  margin-bottom: 20px;
  color: #6c5ce7;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-tech-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-tech-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-tech-item:hover h3 {
  color: #6c5ce7;
}

.playforge-tech-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-tech-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: white;
}

.playforge-tech-details h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.playforge-tech-details h3 i {
  color: #6c5ce7;
}

.playforge-tech-details p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 800px;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-tech-details p i {
  margin-top: 3px;
  color: #6c5ce7;
  font-size: 1.1rem;
}

.playforge-tech-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.playforge-tech-img:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}


.playforge-team-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-team-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-team-title i {
  color: #00cec9;
}

.playforge-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.playforge-team-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-team-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #00cec9;
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.playforge-team-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-team-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.playforge-team-items-image {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.playforge-team-items-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.playforge-team-items-image i {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: 20px;
  color: #00cec9;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
  transform: translateX(-50%) !important;
}

.playforge-team-item:hover i {
  transform: scale(1.2) rotate(5deg) !important;
}

.playforge-team-item:hover img {
  scale: 1.2;
}

.playforge-team-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-team-item:hover h3 {
  color: #00cec9;
}

.playforge-team-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}


.playforge-reach-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-reach-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-reach-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-reach-title i {
  color: #ff7d3e;
}

.playforge-reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.playforge-reach-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-reach-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  opacity: 0.7;
  background: #ff7d3e;
  transition: all 0.3s ease;
}

.playforge-reach-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-reach-item:hover::before {
  width: 10px;
  opacity: 1;
}

.playforge-reach-item i {
  margin-bottom: 20px;
  color: #ff7d3e;
  font-size: 2.2rem;
  transition: transform 0.3s ease;
}

.playforge-reach-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-reach-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-reach-item:hover h3 {
  color: #ff7d3e;
}

.playforge-reach-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}


.playforge-resources-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-resources-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-resources-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-resources-title i {
  color: var(--accent-color);
}

.playforge-resources-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  width: 100%;
}

.playforge-resources-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-resources-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transition: transform 0.4s ease;
  transform: scaleX(0);
}

.playforge-resources-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-resources-item:hover::after {
  transform: scaleX(1);
}

.playforge-resources-item i {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-resources-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-resources-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-resources-item:hover h3 {
  color: var(--accent-color);
}

.playforge-resources-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}


.playforge-contact-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-contact-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-contact-title i {
  color: #e84393;
}

.playforge-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  margin-bottom: 50px;
}

.playforge-contact-info {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: white;
}

.playforge-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
}

.playforge-contact-info p i {
  margin-top: 3px;
  color: #e84393;
  font-size: 1.1rem;
}

.playforge-contact-info a {
  color: #e84393;
  text-decoration: none;
  transition: all 0.3s ease;
}

.playforge-contact-info a:hover {
  color: var(--main-text-color);
  text-decoration: underline;
}

.playforge-contact-form {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: white;
}

.playforge-form-group {
  margin-bottom: 20px;
}

.playforge-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1rem;
}

.playforge-form-group label i {
  margin-right: 8px;
  color: #e84393;
}

.playforge-form-group input,
.playforge-form-group textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--main-text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.playforge-form-group input:focus,
.playforge-form-group textarea:focus {
  border-color: #e84393;
  box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1);
  outline: none;
}

.playforge-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.playforge-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.playforge-checkbox input {
  width: auto;
}

.playforge-checkbox label {
  margin: 0;
  font-weight: normal;
}

.playforge-checkbox a {
  color: #e84393;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.playforge-checkbox a:hover {
  color: var(--main-text-color);
}

.playforge-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  background: #e84393;
  transition: all 0.3s ease;
  cursor: pointer;
}

.playforge-submit-button:hover {
  box-shadow: 0 8px 20px rgba(232, 67, 147, 0.3);
  background: #d33683;
  transform: translateY(-3px);
}

.playforge-contact-map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.playforge-contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


@media (max-width: 1024px) {
  .playforge-vision-container {
    flex-direction: column;
  }

  .playforge-impact-grid,
  .playforge-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .playforge-tech-grid,
  .playforge-resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .playforge-journey-milestone {
    left: 10% !important;
    width: 80%;
  }

  .playforge-journey-milestone::before {
    right: auto !important;
    left: -10px !important;
  }

  .playforge-journey-timeline::before {
    left: 0;
  }
}

@media (max-width: 768px) {

  .playforge-vision-title,
  .playforge-impact-title,
  .playforge-journey-title,
  .playforge-offerings-title,
  .playforge-community-title,
  .playforge-tech-title,
  .playforge-team-title,
  .playforge-reach-title,
  .playforge-resources-title,
  .playforge-contact-title {
    font-size: 2rem;
  }

  .playforge-offerings-grid,
  .playforge-reach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .playforge-tech-grid,
  .playforge-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .playforge-community-grid,
  .playforge-community-stats {
    grid-template-columns: 1fr;
  }

  .playforge-contact-content {
    grid-template-columns: 1fr;
  }

  .playforge-journey-milestone {
    left: 5% !important;
    width: 90%;
  }
}

@media (max-width: 640px) {

  .playforge-vision-section,
  .playforge-impact-section,
  .playforge-journey-section,
  .playforge-offerings-section,
  .playforge-community-section,
  .playforge-tech-section,
  .playforge-team-section,
  .playforge-reach-section,
  .playforge-resources-section,
  .playforge-contact-section {
    padding: 60px 0;
  }

  .playforge-impact-grid,
  .playforge-team-grid,
  .playforge-offerings-grid,
  .playforge-reach-grid,
  .playforge-tech-grid,
  .playforge-resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .playforge-community-stats {
    flex-direction: column;
    gap: 20px;
  }

  .playforge-community-stats div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
  }

  .playforge-community-stats div:last-child {
    border-bottom: none;
  }

  .playforge-journey-milestone {
    left: 0 !important;
    width: 100%;
    margin-bottom: 30px;
  }

  .playforge-journey-timeline::before {
    display: none;
  }

  .playforge-journey-milestone::before {
    display: none;
  }
}

@media (max-width: 480px) {

  .playforge-vision-title,
  .playforge-impact-title,
  .playforge-journey-title,
  .playforge-offerings-title,
  .playforge-community-title,
  .playforge-tech-title,
  .playforge-team-title,
  .playforge-reach-title,
  .playforge-resources-title,
  .playforge-contact-title {
    font-size: 1.8rem;
  }

  .playforge-vision-text,
  .playforge-impact-content p,
  .playforge-tech-details p,
  .playforge-contact-info p {
    font-size: 1rem;
  }
}

@media (max-width: 425px) {
  [class*="-title"] {
    flex-direction: column;
  }
}