.policy,
.success {
  padding-block: 100px 60px !important;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #353535;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #252525;
}

.policy__title {
  color: #272727;
}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-popup-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cookie-popup h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.cookie-popup p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.cookie-accept {
  background: #6b73ff;
  color: white;
}

.cookie-accept:hover {
  background: #5a63f0;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #6b73ff;
  border: 2px solid #6b73ff;
}

.cookie-reject:hover {
  background: #6b73ff;
  color: white;
}

/* Header */
.header {
  background: #f8f9ff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  font-style: italic;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: #6b73ff;
}

.nav-list a.active {
  font-weight: 600;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #666;
}

.user-icon {
  background: #e8e9ff;
  padding: 8px 12px;
  border-radius: 20px;
}

.connect-btn {
  background: #6b73ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.connect-btn:hover {
  background: #5a63f0;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  padding: 20px;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8e9ff 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #6b73ff;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #5a63f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 115, 255, 0.3);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-item {
  text-align: center;
  padding: 30px;
  background: #f8f9ff;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* TeamPro Section */
.teampro {
  padding: 80px 0;
  background: #f8f9ff;
}

.teampro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.teampro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.teampro-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.teampro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: white;
}

.process h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.process > p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
}

.step-number.pink {
  background: #ff6b9d;
}

.step-number.blue {
  background: #4ecdc4;
}

.step-number.purple {
  background: #a8a8ff;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Leadership Section */
.leadership {
  padding: 80px 0;
  background: #f8f9ff;
}

.leadership h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.leadership-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.leadership-box {
  background: #e8e9ff;
  padding: 30px;
  border-radius: 15px;
}

.leadership-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.leadership-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.leadership-frameworks {
  background: #e8e9ff;
  padding: 30px;
  border-radius: 15px;
}

.leadership-frameworks h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.leadership-frameworks p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Principles Section */
.principles {
  padding: 80px 0;
  background: white;
}

.principles h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.principle-item {
  text-align: center;
  padding: 30px;
}

.principle-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
}

.principle-number.pink {
  background: #ff6b9d;
}

.principle-number.blue {
  background: #4ecdc4;
}

.principle-number.purple {
  background: #a8a8ff;
}

.principle-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.principle-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Contact Form Section */
.contact-form {
  padding: 80px 0;
  background: #f8f9ff;
}

.contact-form h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.contact-form > .container > p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.office-info {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.office-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.office-info p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #666;
}

.office-info strong {
  color: #333;
}

.contact-form-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-form input,
.contact-form-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e8e9ff;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.contact-form-form input:focus,
.contact-form-form textarea:focus {
  outline: none;
  border-color: #6b73ff;
}

.contact-form-form button {
  width: 100%;
  background: #6b73ff;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-form button:hover {
  background: #5a63f0;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
}

.footer-bottom p {
  font-size: 12px;
  color: #999;
}

/* Team Page Styles */
.team-principles {
  padding: 80px 0;
  background: white;
}

.team-principles h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.team-members {
  padding: 80px 0;
  background: #f8f9ff;
}

.team-members h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  text-align: center;
  margin-bottom: 20px;
}

.member-image img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
  color: #333;
}

.member-role {
  font-size: 14px;
  color: #6b73ff;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.member-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

.collaboration {
  padding: 80px 0;
  background: white;
}

.collaboration h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.collaboration-item {
  text-align: center;
  padding: 30px;
  background: #f8f9ff;
  border-radius: 15px;
}

.collaboration-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.collaboration-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.testimonials {
  padding: 80px 0;
  background: #f8f9ff;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 12px;
  color: #666;
}

/* Education Page Styles */
.why-join {
  padding: 80px 0;
  background: white;
}

.why-join h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.why-join-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.why-join-item {
  background: #e8e9ff;
  padding: 30px;
  border-radius: 15px;
}

.why-join-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.why-join-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.continuous-improvement {
  background: #e8e9ff;
  padding: 30px;
  border-radius: 15px;
}

.continuous-improvement h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.continuous-improvement p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.experience-benefits {
  padding: 80px 0;
  background: #f8f9ff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
}

.benefit-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.benefit-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Contact Page Styles */
.contact-page {
  padding: 80px 0;
  background: #f8f9ff;
}

.contact-page h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.contact-page > .container > p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.map-placeholder {
  margin-top: 30px;
}

.map-placeholder img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav,
  .header-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .teampro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leadership-boxes {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }

  .hero,
  .about,
  .teampro,
  .process,
  .leadership,
  .principles,
  .contact-form {
    padding: 60px 0;
  }

  .cookie-popup-content {
    padding: 30px 20px;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .why-join-content {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .collaboration-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .process-steps,
  .principles-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-form {
    padding: 30px 20px;
  }

  .team-principles h1,
  .why-join h1,
  .contact-page h1 {
    font-size: 28px;
  }

  .team-members h2,
  .collaboration h2,
  .testimonials h2 {
    font-size: 24px;
  }
}

.contact-map {
  width: 100%;
}