/* Global Styles */
:root {
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --secondary-color: #2ecc71;
  --accent-color: #f39c12;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --gray-color: #95a5a6;
  --danger-color: #e74c3c;
  --success-color: #27ae60;
  --text-color: #333333;
  --bg-color: #ffffff;
  --section-bg: #f9f9f9;
  --border-color: #ddd;
  --neon-color: #39ff14;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --container-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn, button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.btn:hover, button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Header and Navigation */
header {
  background-color: 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: 20px;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active::after,
nav ul li a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Neon Button Effect */
.neon-button {
  position: relative;
  background: transparent;
  color: var(--neon-color);
  border: 2px solid var(--neon-color);
  border-radius: var(--border-radius);
  box-shadow: 0 0 10px var(--neon-color), 0 0 20px var(--neon-color), inset 0 0 10px var(--neon-color);
  text-shadow: 0 0 5px var(--neon-color);
  animation: neon-pulse 1.5s infinite alternate;
  transition: all 0.3s;
}

.neon-button:hover {
  background-color: var(--neon-color);
  color: var(--dark-color);
  box-shadow: 0 0 20px var(--neon-color), 0 0 40px var(--neon-color), inset 0 0 20px var(--neon-color);
  text-shadow: none;
}

@keyframes neon-pulse {
  from {
    box-shadow: 0 0 10px var(--neon-color), 0 0 20px var(--neon-color), inset 0 0 10px var(--neon-color);
  }
  to {
    box-shadow: 0 0 15px var(--neon-color), 0 0 30px var(--neon-color), inset 0 0 15px var(--neon-color);
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--section-bg);
}

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
}

.features h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

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

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--primary-color);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--gray-color);
  font-size: 16px;
}

/* Latest Posts Section */
.latest-posts {
  padding: 80px 0;
}

.latest-posts h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
}

.latest-posts h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

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

.post-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-content {
  padding: 25px;
}

.post-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-content p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more:hover {
  color: var(--primary-dark);
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--section-bg);
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 50px;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
}

.testimonial-content p::before {
  top: -20px;
  left: -10px;
}

.testimonial-content p::after {
  bottom: -40px;
  right: -10px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.testimonial-author .name {
  font-weight: 700;
  font-size: 18px;
}

.testimonial-author .position {
  color: var(--gray-color);
  font-size: 14px;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 14px;
  color: var(--light-color);
  line-height: 1.6;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-legal h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
  color: var(--light-color);
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--light-color);
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color);
}

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

.social-links {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.footer-bottom p {
  color: var(--light-color);
  font-size: 14px;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.page-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-banner p {
  font-size: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Page Styles */
.blog-posts {
  padding: 80px 0;
}

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

.posts-grid .post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.posts-grid .post-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  margin-bottom: 15px;
  font-size: 14px;
}

.post-date {
  color: var(--gray-color);
  margin-right: 15px;
}

.post-category {
  background-color: var(--primary-color);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
}

.posts-grid .post-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.posts-grid .post-content p {
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 30px;
  font-size: 18px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  background-color: var(--dark-color);
  color: white;
  border: none;
  padding: 0 30px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--accent-color);
}

/* Blog Post Page */
.blog-post {
  padding: 80px 0;
}

.post-header {
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-header h1 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.post-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
}

.author-title {
  font-size: 14px;
  color: var(--gray-color);
}

.post-featured-image {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.post-content p {
  margin-bottom: 20px;
  font-size: 18px;
}

.post-content h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: var(--dark-color);
}

.post-content ul, 
.post-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.post-content ul li, 
.post-content ol li {
  margin-bottom: 10px;
}

.post-tags, 
.post-share {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.post-tags span, 
.post-share span {
  font-weight: 600;
  margin-right: 15px;
}

.post-tags a {
  background-color: #f0f0f0;
  color: var(--text-color);
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
}

.post-share a svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-color);
  transition: var(--transition);
}

.post-share a:hover svg {
  stroke: white;
}

.more-posts {
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.more-posts h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

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

.related-post {
  display: flex;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-post img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.related-post-content {
  padding: 15px;
  flex: 1;
}

.related-post-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.related-post-content a {
  font-weight: 600;
  font-size: 14px;
}

/* About Page Styles */
.about-intro {
  padding: 80px 0;
}

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

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.about-content .cta-button {
  margin-top: 20px;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.mission-values {
  padding: 80px 0;
  background-color: var(--section-bg);
}

.mission-box {
  background-color: var(--primary-color);
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--box-shadow);
}

.mission-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.mission-box p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--primary-color);
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.value-card p {
  color: var(--gray-color);
}

.team {
  padding: 80px 0;
}

.team h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: var(--gray-color);
}

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

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 22px;
  margin: 20px 0 5px;
  padding: 0 20px;
}

.team-member p {
  color: var(--gray-color);
  padding: 0 20px;
  margin-bottom: 15px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member .social-links {
  justify-content: center;
  margin: 15px 0 20px;
}

.team-member .social-links a {
  background-color: #f0f0f0;
  width: 36px;
  height: 36px;
}

.team-member .social-links a svg {
  stroke: var(--text-color);
}

.team-member .social-links a:hover {
  background-color: var(--primary-color);
}

.team-member .social-links a:hover svg {
  stroke: white;
}

.partners {
  padding: 80px 0;
  background-color: var(--section-bg);
}

.partners h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.partners p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: var(--gray-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  align-items: center;
}

.partner {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.partner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner img {
  max-width: 150px;
  max-height: 80px;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Programs Page Styles */
.programs-intro {
  padding: 80px 0;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.intro-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.intro-content .cta-button {
  margin-top: 20px;
}

.program-categories {
  padding: 0 0 80px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 10px;
}

.category-tab {
  background-color: #f0f0f0;
  color: var(--text-color);
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 16px;
}

.category-tab:hover {
  background-color: #e0e0e0;
}

.category-tab.active {
  background-color: var(--primary-color);
  color: white;
}

.category-content {
  display: none;
}

.category-content.active {
  display: block;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.program-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .program-card {
    flex-direction: row;
  }
}

.program-image {
  flex: 1;
  min-height: 300px;
  max-width: 100%;
}

@media (min-width: 992px) {
  .program-image {
    max-width: 350px;
  }
}

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

.program-content {
  flex: 2;
  padding: 30px;
}

.program-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.program-details {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.program-details span {
  display: flex;
  align-items: center;
  color: var(--gray-color);
}

.program-details span i {
  margin-right: 5px;
  color: var(--primary-color);
}

.program-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.program-highlights {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.program-highlights h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.program-highlights ul {
  margin-left: 20px;
}

.program-highlights li {
  margin-bottom: 5px;
  list-style-type: disc;
}

.certification-card {
  flex-direction: column;
}

.certification-path {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.path-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.path-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
}

.path-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.path-content p {
  margin: 0;
  color: var(--gray-color);
  font-size: 14px;
}

.program-features {
  padding: 80px 0;
  background-color: var(--section-bg);
}

.program-features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
}

.program-features h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

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

.feature-item {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-item p {
  color: var(--gray-color);
  font-size: 16px;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.contact-info > p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
}

.info-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.info-content p {
  color: var(--gray-color);
  line-height: 1.6;
}

.contact-info .social-links {
  margin-top: 30px;
  justify-content: flex-start;
}

.contact-info .social-links h3 {
  width: 100%;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.contact-info .social-links a {
  background-color: #f0f0f0;
  margin: 0;
}

.contact-form-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
}

.map-section {
  padding: 80px 0;
  background-color: var(--section-bg);
}

.map-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thank You Modal */
.thank-you-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-color);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--danger-color);
}

.modal-body {
  padding: 40px 30px;
  text-align: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.checkmark-circle {
  stroke: var(--success-color);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: var(--success-color);
  stroke-width: 2;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.modal-body h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.modal-body p {
  margin-bottom: 30px;
  color: var(--gray-color);
}

.close-btn {
  background-color: var(--success-color);
  padding: 12px 30px;
}

.close-btn:hover {
  background-color: #219653;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-content {
  padding: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-accept {
  background-color: var(--success-color);
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-customize {
  background-color: var(--gray-color);
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-decline {
  background-color: var(--danger-color);
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept:hover {
  background-color: #219653;
}

.btn-customize:hover {
  background-color: #7f8c8d;
}

.btn-decline:hover {
  background-color: #c0392b;
}

.cookie-content a {
  font-size: 14px;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .program-card {
    flex-direction: column;
  }
  
  .program-image {
    max-width: 100%;
  }
  
  nav ul {
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 15px;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .features h2,
  .latest-posts h2,
  .testimonials h2 {
    font-size: 28px;
  }
  
  .feature-grid,
  .post-grid,
  .testimonial-slider,
  .footer-content,
  .team-grid,
  .partners-grid,
  .values-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius);
  }
  
  .page-banner h1 {
    font-size: 32px;
  }
  
  .post-header h1 {
    font-size: 28px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .mission-box h2 {
    font-size: 28px;
  }
  
  .contact-info h2,
  .contact-form-container h2,
  .map-section h2 {
    font-size: 28px;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    align-items: center;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}
