.elementor-1045 .elementor-element.elementor-element-316e520 > .elementor-container{min-height:400px;}.elementor-1045 .elementor-element.elementor-element-70569a0 > .elementor-container{min-height:400px;}.elementor-1045 .elementor-element.elementor-element-01bccec > .elementor-container{min-height:400px;}.elementor-1045 .elementor-element.elementor-element-eff0ab2 > .elementor-container{min-height:400px;}.elementor-1045 .elementor-element.elementor-element-06c69c9 > .elementor-container{min-height:400px;}.elementor-1045 .elementor-element.elementor-element-63434d7 > .elementor-container{min-height:400px;}.elementor-1045 .elementor-element.elementor-element-3a6c2c6 > .elementor-container{min-height:400px;}/* Start custom CSS for html, class: .elementor-element-d561e2b *//* Education & Resources Hero Section Styles */
.education-hero-section {
  position: relative;
  padding: 5rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  }
  100% {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #b91c1c 100%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: slideInDown 1s ease forwards;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(254, 226, 226, 0.9);
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

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

/* Floating particles effect */
.education-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 15s linear infinite;
  z-index: 1;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-10px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-10px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .education-hero-section {
    padding: 3rem 0;
    min-height: 300px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3a2bef8 *//* Educational Resources Section Styles */
.educational-resources-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  animation: scaleIn 0.8s ease forwards;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

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

.resource-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.05), transparent);
  transition: left 0.6s ease;
}

.resource-card:hover::before {
  left: 100%;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stagger-item {
  animation: slideInUp 0.8s ease forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.3s; }
.stagger-item:nth-child(3) { animation-delay: 0.5s; }
.stagger-item:nth-child(4) { animation-delay: 0.7s; }

.resource-icon {
  width: 4rem;
  height: 4rem;
  background-color: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
  background-color: #dc2626;
  transform: scale(1.1);
}

.resource-card:hover .resource-icon .icon {
  color: white;
}

.resource-icon .icon {
  width: 2rem;
  height: 2rem;
  color: #dc2626;
  transition: color 0.3s ease;
}

.resource-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.75rem;
}

.resource-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.resource-count {
  background-color: #fef2f2;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.count-text {
  color: #b91c1c;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0;
}

.resource-btn {
  background-color: transparent;
  color: #dc2626;
  border: 2px solid #dc2626;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-btn:hover {
  background-color: #dc2626;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220,38,38,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .educational-resources-section {
    padding: 3rem 0;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-card {
    padding: 1.5rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-67670ac *//* Educational Programs Section Styles */
.educational-programs-section {
  padding: 5rem 0;
  background-color: white;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.program-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #dc2626;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.program-card:hover::before {
  transform: scaleY(1);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

.slide-in-left:nth-child(1) { animation-delay: 0.1s; }
.slide-in-right:nth-child(2) { animation-delay: 0.3s; }
.slide-in-left:nth-child(3) { animation-delay: 0.5s; }
.slide-in-right:nth-child(4) { animation-delay: 0.7s; }

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.program-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  flex: 1;
  margin-right: 1rem;
}

.program-status {
  background-color: #dcfce7;
  color: #166534;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.program-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.program-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  text-align: left;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-weight: 600;
  color: #000;
  margin: 0;
}

.impact-highlight {
  color: #dc2626 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .educational-programs-section {
    padding: 3rem 0;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .program-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .program-stats {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9a7c5ec *//* Downloadable Resources Section Styles */
.downloadable-resources-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.download-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
}

.download-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: translateY(-5px) scale(1);
}

.bounce-in {
  animation: bounceIn 0.8s ease forwards;
}

.bounce-in:nth-child(1) { animation-delay: 0.1s; }
.bounce-in:nth-child(2) { animation-delay: 0.3s; }
.bounce-in:nth-child(3) { animation-delay: 0.5s; }
.bounce-in:nth-child(4) { animation-delay: 0.7s; }

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.download-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.download-icon {
  width: 3rem;
  height: 3rem;
  background-color: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
}

.download-card:hover .download-icon {
  background-color: #dc2626;
  transform: scale(1.1);
}

.download-card:hover .download-icon .icon {
  color: white;
}

.download-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #dc2626;
  transition: color 0.3s ease;
}

.download-info {
  flex: 1;
}

.download-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.download-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.download-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-item {
  font-size: 0.75rem;
  color: #6b7280;
}

.download-btn {
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.download-btn:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220,38,38,0.3);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .downloadable-resources-section {
    padding: 3rem 0;
  }
  
  .downloads-grid {
    grid-template-columns: 1fr;
  }
  
  .download-content {
    flex-direction: column;
    text-align: center;
  }
  
  .download-meta {
    justify-content: center;
    text-align: center;
  }
  
  .download-btn {
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-887d386 *//* Partnerships Section Styles */
.partnerships-section {
  padding: 5rem 0;
  background-color: white;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.partnership-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.partnership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #b91c1c, #991b1b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.partnership-card:hover::before {
  transform: scaleX(1);
}

.partnership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.3s; }
.fade-in-up:nth-child(3) { animation-delay: 0.5s; }
.fade-in-up:nth-child(4) { animation-delay: 0.7s; }

.partnership-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.partnership-icon {
  width: 3rem;
  height: 3rem;
  background-color: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
}

.partnership-card:hover .partnership-icon {
  background-color: #dc2626;
  transform: scale(1.1);
}

.partnership-card:hover .partnership-icon .icon {
  color: white;
}

.partnership-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #dc2626;
  transition: color 0.3s ease;
}

.partnership-info {
  flex: 1;
}

.partnership-name {
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.partnership-type {
  display: inline-block;
  background-color: #dbeafe;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.partnership-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .partnerships-section {
    padding: 3rem 0;
  }
  
  .partnerships-grid {
    grid-template-columns: 1fr;
  }
  
  .partnership-content {
    flex-direction: column;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0b14402 *//* Research Opportunities Section Styles */
.research-opportunities-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.research-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  position: relative;
  overflow: hidden;
}

.research-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(220,38,38,0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.research-card:hover::before {
  opacity: 1;
}

.research-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.zoom-in {
  animation: zoomIn 0.8s ease forwards;
}

.zoom-in:nth-child(1) { animation-delay: 0.1s; }
.zoom-in:nth-child(2) { animation-delay: 0.3s; }
.zoom-in:nth-child(3) { animation-delay: 0.5s; }

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.research-icon {
  width: 4rem;
  height: 4rem;
  background-color: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.research-card:hover .research-icon {
  background-color: #dc2626;
  transform: scale(1.2) rotate(5deg);
}

.research-card:hover .research-icon .icon {
  color: white;
}

.research-icon .icon {
  width: 2rem;
  height: 2rem;
  color: #dc2626;
  transition: color 0.3s ease;
}

.research-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.research-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.research-btn {
  background-color: transparent;
  color: #dc2626;
  border: 2px solid #dc2626;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.research-btn:hover {
  background-color: #dc2626;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220,38,38,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .research-opportunities-section {
    padding: 3rem 0;
  }
  
  .research-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fbfd2d3 *//* Education Call to Action Section Styles */
.education-cta-section {
  padding: 5rem 0;
  background-color: #000;
  color: white;
  position: relative;
  overflow: hidden;
}

.education-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(220,38,38,0.2) 0%, transparent 70%);
  z-index: 1;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 20px rgba(220,38,38,0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(220,38,38,0.8), 0 0 40px rgba(220,38,38,0.3);
  }
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.cta-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn.primary {
  background-color: #dc2626;
  color: white;
}

.cta-btn.primary:hover {
  background-color: #b91c1c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220,38,38,0.4);
}

.cta-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background-color: white;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .education-cta-section {
    padding: 3rem 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}/* End custom CSS */