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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
  color: white;
}

.school-cta-hero-banner {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
  background-image: url("https://images.pexels.com/photos/257904/pexels-photo-257904.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
}

.school-cta-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.15) 0%,
      transparent 50%
    );
  animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.cta-hero-text-wrapper {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.school-transformation-headline {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.school-operations-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.get-started-cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.get-started-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

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

.school-core-footer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px 20px;
  margin-top: 40px;
}

.footer-main-layout-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand-navigation-area {
  display: flex;
  flex-direction: column;
}

.school-core-brand-logo {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: white;
}

.navigation-links-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
}



.footer-link-category h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.7;
}

.footer-link-category ul {
  list-style: none;
}

.footer-link-category ul li {
  margin-bottom: 8px;
}

.footer-link-category ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link-category ul li a:hover {
  opacity: 1;
}

.mobile-app-download-buttons {
  display: flex;
  gap: 10px;
}

.app-store-download-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  transition: background 0.3s ease;
}

.app-store-download-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.app-store-icon {
  width: 16px;
  height: 16px;
}

.footer-copyright-notice {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .school-transformation-headline {
    font-size: 2rem;
  }

  .school-operations-description {
    font-size: 1rem;
  }

  .footer-main-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .navigation-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mobile-app-download-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .school-transformation-headline {
    font-size: 2.2rem;
  }

  .footer-main-layout-grid {
    gap: 30px;
  }

  .navigation-links-grid {
    gap: 30px;
  }
}
