:root {
  /* Light Theme (Default) */
  --primary-color: #6200ea;
  --secondary-color: #00e5ff;
  --accent-color: #18ffff;
  --background-color: #f8f9fa;
  --card-bg-color: #ffffff;
  --text-color: #212121;
  --text-light: #757575;
  --border-color: #e0e0e0;
  --success-color: #00c853;
  --warning-color: #ffd600;
  --error-color: #d50000;
  --header-bg: #ffffff;
  --footer-bg: #212121;
  --footer-text: #ffffff;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  --neon-glow: 0 0 10px rgba(98, 0, 234, 0.5);
}

[data-theme="dark"] {
  /* Dark Theme */
  --primary-color: #bb86fc;
  --secondary-color: #03dac6;
  --accent-color: #00b8d4;
  --background-color: #121212;
  --card-bg-color: #1e1e1e;
  --text-color: #ffffff;
  --text-light: #b0bec5;
  --border-color: #424242;
  --success-color: #00e676;
  --warning-color: #ffea00;
  --error-color: #ff5252;
  --header-bg: #1e1e1e;
  --footer-bg: #121212;
  --footer-text: #ffffff;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  --hover-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
  --neon-glow: 0 0 15px rgba(187, 134, 252, 0.7);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Theme Switcher */
.theme-switch-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: var(--card-bg-color);
  padding: 8px 15px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
}

.theme-switch {
  display: inline-block;
  height: 24px;
  position: relative;
  width: 48px;
  margin-right: 10px;
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 16px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 16px;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.theme-switch-wrapper p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

/* Header & Navigation */
header {
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s ease;
}

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

.logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 15px;
  object-fit: cover;
}

.logo-container h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

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

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

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
  background-color: rgba(98, 0, 234, 0.1);
}

nav ul li a.active {
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: inset 0 -3px 0 var(--primary-color);
}

/* Main Content */
main {
  min-height: 70vh;
  padding: 40px 5% 80px;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow), var(--neon-glow);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}

/* Features Section */
.features {
  padding: 80px 0;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.features h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.feature-card {
  background-color: var(--card-bg-color);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.icon {
  margin-bottom: 20px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.feature-card:hover .icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(var(--primary-color), 0.5));
}

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

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

/* Beginner Mistakes Section */
.beginner-mistakes {
  padding: 80px 0;
  background-color: var(--card-bg-color);
  border-radius: 30px;
  margin: 30px 0;
  box-shadow: var(--card-shadow);
}

.beginner-mistakes h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.beginner-mistakes h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.mistakes-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px 40px;
}

.mistake-card {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.mistake-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(var(--primary-color), 0.1);
  position: absolute;
  top: 10px;
  right: 15px;
  opacity: 0.3;
}

.mistake-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.mistake-card p {
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Recent Posts Section */
.recent-posts {
  padding: 80px 0;
  text-align: center;
}

.recent-posts h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.recent-posts h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.post-card {
  background-color: var(--card-bg-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

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

.post-content {
  padding: 25px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
  line-height: 1.4;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 5% 20px;
  position: relative;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.footer-logo p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--footer-text);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  border-radius: 1.5px;
}

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

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

.footer-links ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--footer-text);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-contact h4:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  border-radius: 1.5px;
}

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

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

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 15px;
  transition: all 0.3s ease;
  color: var(--footer-text);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--card-bg-color);
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border-color);
}

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

.cookie-content p {
  margin-bottom: 15px;
}

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

.cookie-button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.cookie-button.customize {
  background-color: var(--card-bg-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.cookie-button.reject {
  background-color: var(--card-bg-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

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

.cookie-policy-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Blog Page Styles */
.blog-hero {
  text-align: center;
  padding: 80px 0 60px;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.blog-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

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

.blog-post {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background-color: var(--card-bg-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

.post-image {
  height: 100%;
}

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

.post-content {
  padding: 30px;
}

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

.post-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.post-category {
  background-color: rgba(98, 0, 234, 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.post-read-time {
  color: var(--text-light);
  font-size: 0.9rem;
}

.read-more-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--card-bg-color);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--card-shadow);
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.categories ul {
  list-style: none;
}

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

.categories ul li a {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

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

.popular-post {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.popular-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.popular-post div {
  flex: 1;
}

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

.popular-post span {
  font-size: 0.8rem;
  color: var(--text-light);
}

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

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

.newsletter input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  background-color: var(--background-color);
  color: var(--text-color);
}

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

.newsletter button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* About Page */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 0 60px;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}

.about-story {
  padding: 80px 0;
}

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

.about-story h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.about-story h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

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

.core-values {
  padding: 80px 0;
  background-color: var(--card-bg-color);
  border-radius: 30px;
  margin: 30px 0;
  box-shadow: var(--card-shadow);
}

.core-values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.core-values h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.value-card {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  color: var(--primary-color);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

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

.team-section {
  padding: 80px 0;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.team-section h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.team-card {
  background-color: var(--card-bg-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  text-align: center;
}

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

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-color);
}

.team-card h3 {
  font-size: 1.3rem;
  margin: 20px 0 5px;
}

.team-card p {
  color: var(--text-light);
  padding: 0 20px;
  margin-bottom: 15px;
}

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

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(var(--primary-color), 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.awards-section {
  padding: 80px 0;
}

.awards-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.awards-section h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.award-card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.award-year {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.award-card h3 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
}

.award-card p {
  color: var(--text-light);
}

/* Contact Page */
.contact-hero {
  text-align: center;
  padding: 80px 0 60px;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.info-card {
  display: flex;
  background-color: var(--card-bg-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(var(--primary-color), 0.1);
  color: var(--primary-color);
  border-radius: 10px;
  margin-right: 20px;
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

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

.info-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

.social-connect h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-form-container {
  background-color: var(--card-bg-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-color), 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-section {
  margin-top: 80px;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

.map-image {
  width: 100%;
  height: 400px;
  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);
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.modal-content {
  background-color: var(--card-bg-color);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-icon {
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.modal-button {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-button:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* Blog Post Page */
.blog-post-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-post-content {
  background-color: var(--card-bg-color);
  border-radius: 20px;
  padding: 60px;
  box-shadow: var(--card-shadow);
}

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

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

.post-header .post-meta {
  justify-content: center;
}

.post-featured-image {
  margin-bottom: 40px;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.post-body {
  line-height: 1.8;
}

.post-body p {
  margin-bottom: 20px;
}

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

.post-body ul, .post-body ol {
  margin: 20px 0 20px 20px;
}

.post-body li {
  margin-bottom: 10px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}

.tag {
  background-color: rgba(var(--primary-color), 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.share-post {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.share-post h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.share-buttons a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: var(--background-color);
  color: var(--text-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-buttons a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.author-box {
  display: flex;
  background-color: var(--background-color);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
}

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

.author-info {
  flex: 1;
}

.author-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.author-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

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

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

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

.related-post-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

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

.related-post-card h4 {
  padding: 20px 20px 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.related-post-card .read-more {
  padding: 0 20px 20px;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero, .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content, .about-hero-content {
    order: 1;
  }
  
  .hero-image, .about-hero-image {
    order: 0;
  }
  
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .blog-content {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    margin-top: 40px;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .post-image img {
    height: 300px;
  }
  
  .blog-post-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }
  
  .logo-container {
    margin-bottom: 20px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .hero-content h1, .about-hero-content h1, .post-header h1 {
    font-size: 2.2rem;
  }
  
  .features h2, .beginner-mistakes h2, .recent-posts h2, 
  .about-story h2, .core-values h2, .team-section h2, 
  .awards-section h2 {
    font-size: 2rem;
  }
  
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .post-header h1 {
    font-size: 1.8rem;
  }
  
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-buttons a {
    width: 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
  }
}
