/* Base Styles and Variables */
:root {
  /* Triadic color scheme */
  --primary-color: #3498db;
  --secondary-color: #e74c3c;
  --tertiary-color: #2ecc71;
  
  /* Darker variations for hover states */
  --primary-dark: #2980b9;
  --secondary-dark: #c0392b;
  --tertiary-dark: #27ae60;
  
  /* Text colors */
  --text-dark: #2c3e50;
  --text-medium: #7f8c8d;
  --text-light: #ecf0f1;
  
  /* Background colors */
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --bg-dark: #34495e;
  --bg-gradient: linear-gradient(120deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
  
  /* UI Elements */
  --border-radius: 8px;
  --border-radius-large: 12px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
  --glassmorphism: rgba(255, 255, 255, 0.25);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  position: relative;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition-medium);
}

section:hover h2:after {
  width: 80px;
}

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

p {
  margin-bottom: var(--spacing-md);
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section styling */
section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  padding-bottom: var(--spacing-sm);
}

.section-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-medium);
  font-size: 1.1rem;
}

/* Button Styles */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
  background-color: var(--primary-dark);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light) !important;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-tertiary {
  background-color: var(--tertiary-color);
  color: var(--text-light);
}

.btn-tertiary:hover {
  background-color: var(--tertiary-dark);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition-medium);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo a {
  display: block;
}

.logo img {
  border-radius: 0;
  transition: var(--transition-medium);
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-medium);
}

.main-nav a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition-medium);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease-out;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.stat-item {
  text-align: center;
  padding: var(--spacing-sm);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Courses Section */
.courses {
  background-color: var(--bg-white);
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition-medium);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.course-details {
  list-style: none;
  margin: var(--spacing-md) 0;
}

.course-details li {
  margin-bottom: 8px;
  color: var(--text-medium);
}

.card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Innovation Section */
.innovation {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.innovation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient);
  z-index: 0;
}

.innovation-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.innovation-image {
  flex: 1;
}

.innovation-text {
  flex: 1;
}

.innovation-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-white);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition-medium);
  flex-basis: calc(50% - var(--spacing-sm) / 2);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Instructors Section */
.instructors {
  background-color: var(--bg-white);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.instructor-position {
  color: var(--tertiary-color);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.instructor-credentials {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Resources Section */
.resources {
  background-color: var(--bg-light);
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.resource-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--box-shadow);
}

.resource-links {
  margin-top: var(--spacing-md);
}

.resource-links li {
  margin-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: var(--spacing-sm);
}

.resource-links a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.resource-title {
  font-weight: 700;
  color: var(--primary-color);
}

.resource-description {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Community Section */
.community {
  background-color: var(--bg-white);
}

.community-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.community-text {
  flex: 1;
}

.community-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition-medium);
}

.community-image img:hover {
  transform: scale(1.03);
  box-shadow: var(--box-shadow-hover);
}

.community-stats {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-md);
}

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

.testimonials h3 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-md);
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--box-shadow);
  transition: var(--transition-medium);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.testimonial-content {
  position: relative;
  padding-left: var(--spacing-md);
  border-left: 3px solid var(--secondary-color);
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* News Section */
.news {
  background-color: var(--bg-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.news-date {
  display: block;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  margin-top: var(--spacing-sm);
  font-weight: 500;
  position: relative;
  color: var(--primary-color);
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition-medium);
}

.read-more:hover::after {
  margin-left: 10px;
}

/* Blog Section */
.blog {
  background-color: var(--bg-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

.blog-category {
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
  font-size: 0.8rem;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* Media Section */
.media {
  background-color: var(--bg-light);
  padding: var(--spacing-lg) 0;
}

.media-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.media-slide {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-medium);
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-slide:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.media-quotes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.quote {
  max-width: 400px;
  text-align: center;
}

.quote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 10px;
  position: relative;
}

.quote p::before {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: -15px;
}

.quote span {
  font-weight: 500;
  color: var(--primary-color);
}

/* Contact Section */
.contact {
  background-color: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--spacing-lg);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group.is-full {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-medium);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: span 2;
}

.form-checkbox input {
  width: auto;
}

.form-checkbox label {
  margin-bottom: 0;
}

.contact-form button {
  grid-column: span 2;
  justify-self: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.info-block h3 {
  margin-bottom: var(--spacing-sm);
}

.info-block ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  list-style: none;
}

.info-block li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon {
  font-size: 1.2rem;
  color: var(--primary-color);
}

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

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

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo img {
  margin-bottom: var(--spacing-sm);
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-links-column {
  flex: 1 1 160px;
}

.footer-links-column h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.footer-links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-medium);
}

.footer-links-column a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* Social links styling */
.social-links a {
  display: flex;
  align-items: center;
}

.social-links a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-color: var(--text-light);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: var(--transition-medium);
}

.social-links a:hover::before {
  background-color: var(--secondary-color);
}

.social-links li:nth-child(1) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(2) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(3) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(4) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(5) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'/%3E%3C/svg%3E");
}

.footer-subscribe {
  display: flex;
  margin-top: var(--spacing-sm);
}

.footer-subscribe input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.footer-subscribe button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(52, 73, 94, 0.95);
  color: #fff;
  z-index: 9999;
  padding: var(--spacing-sm);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.cookie-content p {
  margin-bottom: 0;
}

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

.btn-cookie {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-medium);
}

.btn-cookie:hover {
  background-color: var(--secondary-dark);
}

/* Success Page */
.success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--spacing-lg) var(--spacing-md);
}

.success-icon {
  font-size: 80px;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-message {
  max-width: 600px;
  margin-bottom: var(--spacing-md);
}

.success-message h1 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.success-message p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.success-actions {
  display: flex;
  gap: var(--spacing-md);
}

/* About page styles */
.about-hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 80px;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-content h1 {
  color: var(--text-light);
}

/* Privacy and Terms pages */
.privacy-content, .terms-content {
  padding-top: 100px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mx-auto { margin-left: auto; margin-right: auto; }

.is-two-thirds {
  width: 66.66%;
}

.is-half {
  width: 50%;
}

.is-one-third {
  width: 33.33%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .innovation-content, 
  .community-content {
    flex-direction: column;
  }
  
  .community-content {
    margin-bottom: var(--spacing-md);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

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

  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 130px 0 70px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background-color: var(--bg-white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .main-nav .nav-list.active {
    max-height: 500px;
  }
  
  .main-nav .nav-list li {
    width: 100%;
  }
  
  .main-nav .nav-list a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-checkbox, 
  .contact-form button {
    grid-column: span 1;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .section-header {
    margin-bottom: var(--spacing-md);
  }
  
  .feature {
    flex-basis: 100%;
  }
  
  .success-actions {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

textarea {
  resize: none;
}

.scroll-top-btn {
  padding: 0 !important;
  position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color, #3498db);
    color: rgb(255, 255, 255);
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    z-index: 99;
}

#newsletter {
  width: max-content !important;
}

.terms-section {
  padding-top: 0;
  padding-bottom: 0;
}