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

.success__text {
  margin-bottom: 27px;
}

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

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

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

.policy__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0%;
}

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

.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;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #374151;
  overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #7c3aed;
  padding: 12px 24px;
  border: 2px solid #7c3aed;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background: #7c3aed;
  color: white;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border: 2px solid #7c3aed;
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideInUp 0.5s ease;
}

.cookie-icon {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}

.cookie-popup h3 {
  color: #7c3aed;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.cookie-popup p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #6b7280;
}

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

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
  font-size: 14px;
  padding: 10px 20px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  width: 32px;
  height: 32px;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #7c3aed;
}

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

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

.nav-list a:hover {
  color: #7c3aed;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #374151;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

.mobile-menu nav ul li {
  margin: 15px 0;
}

.mobile-menu nav ul li a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 18px;
}

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

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

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #7c3aed;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #6b7280;
}

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

/* Statistics Section */
.stats {
  padding: 80px 0;
  background: white;
}

.stats h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 14px;
  color: #6b7280;
}

/* Work Process Section */
.work-process {
  padding: 80px 0;
  background: #f9fafb;
}

.work-process h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

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

.process-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

.process-step p {
  color: #6b7280;
  line-height: 1.6;
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background: white;
}

.blog h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(274px, 274px));
  gap: 20px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.blog-content p {
  color: #6b7280;
  line-height: 1.6;
}

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

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

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

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #6b7280;
}

.about-text .btn-primary {
  margin-top: 20px;
}

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

/* Understanding Section */
.understanding {
  padding: 80px 0;
  background: #1f2937;
  color: white;
}

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

.understanding-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.understanding-text p {
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.understanding-text .btn-primary {
  margin-top: 20px;
}

.understanding-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Values Section */
.values {
  padding: 80px 0;
  background: #f9fafb;
}

.values h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.value-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.value-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Programs Section */
.programs {
  padding: 80px 0;
  background: #f9fafb;
}

.programs h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(560px, 568px));
  gap: 20px;
}

.program-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.program-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.program-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0b1324;
  margin-bottom: 15px;
}

.program-item p {
  color: #0b1324b2;
  line-height: 1.6;
  margin-bottom: 12px;
}

.program-label {
  width: fit-content;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;

color: #6f00eb !important;
  background-color: #6f00eb26;
}

/* Mission Section */
.mission {
  padding: 80px 0;
  background: white;
}

.mission h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.mission-content {
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.mission-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
  text-align: center;
}

.mission-item p {
  color: #6b7280;
  line-height: 1.8;
  text-align: center;
}

.mission .btn-primary {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

/* Growth Section */
.growth {
  padding: 80px 0;
  background: #f9fafb;
}

.growth h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

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

.growth-item {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.growth-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 20px;
}

.growth-item p {
  color: #6b7280;
  line-height: 1.8;
}

/* Team Section */
.team {
  padding: 80px 0;
  background: white;
}

.team h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: #f9fafb;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.team-member p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
}

.team-year {
  background: #7c3aed;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #1f2937;
  color: white;
}

.contact h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-content > p {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-details p {
  margin: 5px 0;
  font-weight: 500;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.15);
}

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

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

.footer-brand .brand-name {
  color: white;
}

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

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin: 10px 0;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

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

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

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

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

  .stats-grid,
  .process-grid,
  .values-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }

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

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

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .footer-links {
    justify-content: center;
    gap: 40px;
  }

  .cookie-popup {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .stats,
  .work-process,
  .blog,
  .about,
  .contact,
  .understanding,
  .values,
  .programs,
  .mission,
  .growth,
  .team {
    padding: 60px 0;
  }

  .stats h2,
  .work-process h2,
  .blog h2,
  .about h2,
  .contact h2,
  .values h2,
  .programs h2,
  .mission h2,
  .growth h2,
  .team h2 {
    font-size: 28px;
  }

  .understanding-text h1 {
    font-size: 26px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
