.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: "Raleway", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  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 30px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #8b5cf6;
  padding: 15px 30px;
  border: 2px solid #8b5cf6;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #8b5cf6;
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.cookie-content h3 {
  color: #8b5cf6;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cookie-content p {
  margin-bottom: 30px;
  line-height: 1.6;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

.nav-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #8b5cf6;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-content h2 {
  color: #64748b;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: left;
}

.hero-content p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
}

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

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

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

.about h2 {
  color: #8b5cf6;
  text-align: left;
  margin-bottom: 2rem;
}

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

/* Expertise Section */
.expertise {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.expertise h2 {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.expertise-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-10px);
}

.expertise-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon img {
  width: 64px;
  height: 64px;
}

.expertise-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.expertise-card:nth-child(1) h3 {
  color: #3b82f6;
}

.expertise-card:nth-child(2) h3 {
  color: #ef4444;
}

.expertise-card:nth-child(3) h3 {
  color: #f59e0b;
}

.expertise-card:nth-child(4) h3 {
  color: #8b5cf6;
}

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

.team h2 {
  color: #8b5cf6;
}

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

.team-member {
  text-align: center;
  padding: 1rem;
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  color: #8b5cf6;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: #64748b;
  margin-bottom: 0;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.services h2 {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  padding: 20px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.service-image {
  height: 160px;
  overflow: hidden;
}

.service-card--program .service-image {
  height: 24px;
}

.service-card--program .service-image img {
  object-fit: contain;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  padding: 1.5rem 1.5rem 0;
  font-size: 1.3rem;
}

.service-sec-text {
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0px;
  margin-top: 20px;
}

.service-card:nth-child(1) h3 {
  color: #8b5cf6;
}

.service-card:nth-child(2) h3 {
  color: #f59e0b;
}

.service-card:nth-child(3) h3 {
  color: #8b5cf6;
}

.service-card:nth-child(4) h3 {
  color: #ec4899;
}

.service-card:nth-child(5) h3 {
  color: #8b5cf6;
}

.service-card:nth-child(6) h3 {
  color: #10b981;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: white;
}

.contact h2 {
  color: #8b5cf6;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  padding: 2rem;
  border-radius: 20px;
}

.contact-info h3 {
  color: #10b981;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #64748b;
  margin-bottom: 0;
}

.contact-form {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  padding: 2rem;
  border-radius: 20px;
}

.contact-form h3 {
  color: #ec4899;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Values Section */
.values {
  padding: 150px 0 100px;
  background: linear-gradient(135f, #f8fafc 0%, #e2e8f0 100%);
}

.values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.values h1 {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.value-item {
  background: rgba(139, 92, 246, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #8b5cf6;
}

.value-item h3 {
  color: #8b5cf6;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: #64748b;
  margin-bottom: 0;
}

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

/* Mission Section */
.mission {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.mission h2 {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission p {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #64748b;
}

.mission-cta {
  text-align: center;
}

/* Growth Section */
.growth {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.growth h2 {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.growth-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.growth-item h3 {
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.growth-item p {
  color: #64748b;
  margin-bottom: 0;
}

/* Partners Section */
.partners {
  padding: 100px 0;
  background: white;
}

.partners h2 {
  color: #8b5cf6;
}

.partners-list {
  max-width: 800px;
  margin: 0 auto;
}

.partner-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.partner-image {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-content h3 {
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.partner-content p {
  color: #64748b;
  margin-bottom: 0;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #8b5cf6;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-contact p {
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero .container,
  .about-content,
  .values-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .values-image {
    order: 1;
  }

  .values-text {
    order: 2;
  }

  .partner-item {
    flex-direction: column;
    text-align: center;
  }

  .partner-image {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    padding-inline: 10px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 120px 0 80px;
    text-align: center;
  }

  .expertise-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

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

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

  .expertise,
  .services,
  .growth {
    padding: 60px 0;
  }

  .about,
  .team,
  .contact,
  .mission,
  .partners {
    padding: 60px 0;
  }

  .values {
    padding: 120px 0 60px;
  }

  .value-item,
  .growth-item,
  .expertise-card,
  .service-card {
    padding: 1.5rem;
  }

  .partner-item {
    gap: 1rem;
  }

  .partner-image {
    width: 120px;
    height: 120px;
  }
}

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

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.expertise-card,
.service-card,
.team-member {
  animation: fadeInUp 0.6s ease-out;
}
