/* Base Styles */
:root {
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --secondary-color: #e74c3c;
  --secondary-dark: #c0392b;
  --accent-color: #f39c12;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --border-color: #dddddd;
  --success-color: #27ae60;
  --warning-color: #f1c40f;
  --error-color: #e74c3c;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8em;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.2em;
}

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

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

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

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

/* Button Styles */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  border: none;
}

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

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

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

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

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
}

.logo-container h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
}

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

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

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

nav ul li a:hover::after, nav ul li a.active::after {
  width: 100%;
}

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

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  height: 600px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Page Banner */
.page-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content {
  max-width: 800px;
  padding: 0 20px;
}

.banner-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 80px 30px;
  background-color: var(--light-color);
}

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

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 30px;
}

.feature-box h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* Daily Inspiration Section */
.daily-inspiration {
  background-color: var(--light-gray);
  padding: 60px 30px;
  text-align: center;
}

.daily-inspiration h2 {
  margin-bottom: 30px;
  color: var(--dark-color);
}

.quote-box {
  max-width: 800px;
  margin: 0 auto 40px;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.quote-box blockquote {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 15px;
  color: var(--dark-color);
  line-height: 1.5;
}

.quote-box cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

.language-tip {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.language-tip h3 {
  color: white;
  margin-bottom: 10px;
}

.language-tip p {
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  padding: 60px 30px;
  background-color: white;
  text-align: center;
}

.stats-section h2 {
  margin-bottom: 40px;
}

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

.stat-box {
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 8px;
  transition: var(--transition);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 1rem;
  color: var(--dark-color);
}

/* Recent Posts Section */
.recent-posts {
  padding: 80px 30px;
  background-color: var(--light-gray);
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

.post-card:hover {
  transform: translateY(-10px);
}

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

.post-content {
  padding: 20px;
}

.post-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.post-content p {
  margin-bottom: 20px;
  color: #666;
}

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

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

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

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

/* Testimonials Section */
.testimonials {
  padding: 80px 30px;
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-slider {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.testimonial {
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
}

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

.author-info h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

/* CTA Section */
.cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 30px;
  color: white;
  text-align: center;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 2rem;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

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

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

.footer-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.registration {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

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

.footer-links ul li a {
  color: #ddd;
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

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

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

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

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

.copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 20px;
  text-align: center;
}

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

.btn-cookie {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.btn-cookie.customize {
  background-color: var(--warning-color);
  color: #333;
}

.btn-cookie.reject {
  background-color: var(--error-color);
  color: white;
}

.cookie-policy-link {
  color: var(--primary-color);
  text-decoration: underline;
  margin-top: 10px;
}

/* Blog Page Styles */
.blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-section {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.sidebar-section h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.categories ul {
  list-style: none;
}

.categories ul li {
  margin-bottom: 10px;
}

.categories ul li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  transition: var(--transition);
}

.categories ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.popular-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.popular-post-content h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.popular-post-content .post-date {
  font-size: 0.8rem;
  color: #666;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribe-form input {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--light-gray);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-color);
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Courses Section */
.courses-section {
  padding: 60px 30px;
  background-color: var(--light-gray);
}

.courses-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

.course-card:hover {
  transform: translateY(-10px);
}

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

.course-content {
  padding: 25px;
}

.course-content h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.course-details {
  margin-bottom: 20px;
}

.course-details p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
}

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

.methodology {
  padding: 80px 30px;
  background-color: white;
}

.methodology h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.methodology-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.methodology-text h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.methodology-text h3:first-child {
  margin-top: 0;
}

/* About Page Styles */
.about-story {
  padding: 80px 30px;
  background-color: white;
}

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

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-text h2 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.mission-vision {
  padding: 80px 30px;
  background-color: var(--light-gray);
}

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

.mission, .vision, .values {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.mission .icon, .vision .icon, .values .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}

.mission h3, .vision h3, .values h3 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.values ul {
  list-style: none;
}

.values ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.values ul li:before {
  content: '\2022';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.team-section {
  padding: 80px 30px;
  background-color: white;
  text-align: center;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.team-member {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  margin-bottom: 5px;
}

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

.team-member .social-icons {
  justify-content: center;
  margin-top: 20px;
}

.facilities {
  padding: 80px 30px;
  background-color: var(--light-gray);
  text-align: center;
}

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

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

.facility:hover {
  transform: translateY(-10px);
}

.facility img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.partners {
  padding: 60px 30px;
  background-color: white;
  text-align: center;
}

.partners h2 {
  margin-bottom: 40px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.partner img {
  max-width: 120px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 30px;
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  padding: 40px;
  border-radius: 8px;
}

.contact-info h3 {
  color: white;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

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

.info-item .icon {
  margin-right: 15px;
  font-size: 20px;
  color: white;
}

.info-item p {
  margin-bottom: 0;
}

.social-links h4 {
  color: white;
  margin-bottom: 15px;
  margin-top: 30px;
}

.contact-info .social-icons a {
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-form-container {
  padding: 40px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.contact-form-container h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

.map-section {
  padding: 60px 30px;
  background-color: var(--light-gray);
  text-align: center;
}

.map-section h3 {
  margin-bottom: 30px;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-overlay p {
  margin-bottom: 0;
}

.faq {
  padding: 80px 30px;
  background-color: white;
}

.faq h3 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.faq-item.active .faq-toggle i:before {
  content: '\f068';
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  position: relative;
}

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

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

.thank-you-message {
  text-align: center;
}

.success-icon {
  font-size: 50px;
  color: var(--success-color);
  margin-bottom: 20px;
}

.thank-you-message h3 {
  margin-bottom: 20px;
}

.thank-you-message p {
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-container,
  .about-content,
  .methodology-content {
    grid-template-columns: 1fr;
  }
  
  .blog-container {
    grid-template-columns: 1fr;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .post-image img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }
  
  .logo-container {
    margin-bottom: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .hero {
    height: 400px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .feature-box,
  .course-card,
  .team-member,
  .facility {
    padding: 20px;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 25px;
  }
  
  .map-overlay {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero-content h2,
  .banner-content h2,
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .stats-container,
  .courses-grid,
  .team-grid,
  .facilities-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .testimonial-slider {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-cookie {
    width: 100%;
  }
}

/* Icon Font */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2') format('woff2');
}

.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.fa-certificate:before { content: '\f0a3'; }
.fa-book:before { content: '\f02d'; }
.fa-globe:before { content: '\f0ac'; }
.fa-clock:before { content: '\f017'; }
.fa-calendar-alt:before { content: '\f073'; }
.fa-users:before { content: '\f0c0'; }
.fa-user:before { content: '\f007'; }
.fa-building:before { content: '\f1ad'; }
.fa-laptop:before { content: '\f109'; }
.fa-map-marker-alt:before { content: '\f3c5'; }
.fa-phone:before { content: '\f095'; }
.fa-envelope:before { content: '\f0e0'; }
.fa-bullseye:before { content: '\f140'; }
.fa-eye:before { content: '\f06e'; }
.fa-heart:before { content: '\f004'; }
.fa-check-circle:before { content: '\f058'; }
.fa-plus:before { content: '\f067'; }
.fa-minus:before { content: '\f068'; }
