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

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #3b82f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
}

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

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

.main-navigation {
  background-color: var(--bg-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 0;
}

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

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 600px;
}

.main-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtext {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

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

.features-grid,
.courses-preview,
.testimonials-section,
.lead-form-section,
.blog-preview {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.courses-preview {
  background-color: var(--bg-light);
}

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

.course-item {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.course-item:hover {
  transform: translateY(-5px);
}

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

.course-item h3 {
  font-size: 1.3rem;
  padding: 20px 20px 10px;
  color: var(--text-dark);
}

.course-item p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

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

.testimonial-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.lead-form-section {
  background-color: var(--bg-light);
}

.form-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.lead-capture-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-button {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: var(--secondary-color);
}

.blog-grid,
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card,
.post-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

.blog-card img,
.post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3,
.post-content h2 a {
  font-size: 1.3rem;
  padding: 20px 20px 10px;
  color: var(--text-dark);
}

.post-content h2 a {
  text-decoration: none;
  display: block;
}

.post-content h2 a:hover {
  color: var(--primary-color);
}

.blog-card p,
.post-excerpt {
  padding: 0 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.read-more,
.read-more-link {
  display: inline-block;
  padding: 10px 20px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover,
.read-more-link:hover {
  color: var(--secondary-color);
}

.post-meta {
  display: flex;
  gap: 20px;
  padding: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.post-category {
  background-color: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

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

.view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.view-all-button:hover {
  background-color: var(--secondary-color);
}

.site-footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.registration-number {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 10000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text h4 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.cookie-text p {
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.decline-btn {
  background-color: #6b7280;
  color: white;
}

.customize-btn {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.accept-btn {
  background-color: var(--primary-color);
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close-modal:hover {
  color: #000;
}

.modal-content h3 {
  color: var(--success-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.about-hero,
.blog-header,
.contact-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
}

.about-hero h1,
.blog-header h1,
.contact-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-description,
.blog-subtitle,
.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.mission-section,
.values-section,
.team-section,
.stats-section {
  padding: 80px 20px;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.mission-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.mission-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
  background-color: var(--bg-light);
}

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

.value-item {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-item h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-item p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.team-member {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

.team-member h3 {
  padding: 20px 20px 5px;
  color: var(--text-dark);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  padding: 0 20px;
}

.team-bio {
  padding: 15px 20px 25px;
  color: var(--text-light);
  line-height: 1.6;
}

.stats-section {
  background-color: var(--primary-color);
  color: white;
}

.stats-section .section-title {
  color: white;
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.blog-listing {
  padding: 60px 20px;
}

.newsletter-section {
  background-color: var(--bg-light);
  padding: 60px 20px;
}

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

.newsletter-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.newsletter-box p {
  margin-bottom: 25px;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

.contact-main {
  padding: 60px 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-block {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.info-block h2,
.info-block h3 {
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.reg-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.contact-form-side h2 {
  margin-bottom: 25px;
  color: var(--text-dark);
}

.form-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.spell-check-btn {
  padding: 12px 25px;
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.spell-check-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.map-section {
  padding: 60px 20px;
  background-color: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-single {
  padding: 0 0 60px 0;
}

.post-header-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.post-content-wrapper {
  max-width: 900px;
  margin: -80px auto 0;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
}

.post-header {
  margin-bottom: 40px;
}

.post-header h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--text-dark);
  margin-top: 15px;
}

.post-body h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 40px 0 20px;
}

.post-body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.post-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.back-to-blog:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .mission-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions button {
    width: 100%;
  }

  .post-content-wrapper {
    padding: 30px 20px;
    margin-top: -40px;
  }

  .post-header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1,
  .blog-header h1,
  .contact-header h1 {
    font-size: 2rem;
  }

  .hero-description,
  .blog-subtitle,
  .contact-subtitle {
    font-size: 1rem;
  }
}