/* Base Styles */
:root {
  --primary-color: #2d63ed;
  --primary-dark: #1e50d2;
  --secondary-color: #34c3ff;
  --accent-color: #6b46ff;
  --dark-color: #192035;
  --light-color: #f5f7ff;
  --gray-color: #838995;
  --light-gray: #e9ecf1;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  
  --text-color: #343a40;
  --body-bg: #ffffff;
  
  --border-radius: 8px;
  --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', Consolas, monospace;
}

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

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

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

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

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

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

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

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

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

/* Hero Section */
.hero {
  padding: 10rem 0 5rem;
  background-image: linear-gradient(to right, rgba(25, 32, 53, 0.9), rgba(25, 32, 53, 0.7)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero h1 span {
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.service-icon svg {
  color: var(--primary-color);
  width: 32px;
  height: 32px;
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* Beginners Guide Section */
.beginners-guide {
  padding: 5rem 0;
}

.beginners-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.beginners-text h3 {
  margin-bottom: 1.5rem;
}

.beginners-text ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.beginners-text ul li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
}

.beginners-text ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: -1rem;
  font-weight: bold;
}

.beginners-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Latest Posts Section */
.latest-posts {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

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

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

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

.post-content {
  padding: 1.5rem;
}

.post-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-meta {
  color: var(--gray-color);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: 0.25rem;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 0.5rem;
}

.view-all-container {
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(to right, rgba(43, 99, 237, 0.9), rgba(107, 70, 255, 0.9)), url('images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h3, 
.footer-contact h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p svg {
  margin-right: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.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%;
  transition: var(--transition);
}

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

.social-icons svg {
  color: white;
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  max-width: 1100px;
  margin: 0 auto;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(200%);
  transition: transform 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-buttons button {
  padding: 0.6rem 1.25rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

.btn-customize {
  background-color: var(--light-gray);
  color: var(--dark-color);
}

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

.btn-decline {
  background-color: transparent;
  border: 1px solid var(--light-gray);
  color: var(--gray-color);
}

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

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

/* Page Header */
.page-header {
  padding: 10rem 0 5rem;
  background-image: linear-gradient(to right, rgba(25, 32, 53, 0.9), rgba(25, 32, 53, 0.7)), url('images/header-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Page Styles */
.blog-content {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-text {
  padding: 2rem 2rem 2rem 0;
}

.blog-text h2 {
  margin-bottom: 0.75rem;
}

.blog-text h2 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.blog-text h2 a:hover {
  color: var(--primary-color);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--gray-color);
  font-size: 0.875rem;
}

/* Subscribe Section */
.cta-subscribe {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.subscribe-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem 2rem;
}

.subscribe-box h2 {
  margin-bottom: 1rem;
}

.subscribe-box p {
  margin-bottom: 2rem;
  color: var(--gray-color);
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-note {
  font-size: 0.875rem;
  color: var(--gray-color);
}

/* Contact Page Styles */
.contact-section {
  padding: 5rem 0;
}

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

.contact-info {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.info-items {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(45, 99, 237, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.info-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.social-connect {
  margin-top: 2.5rem;
}

.social-connect h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
}

.contact-form-container h2 {
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-primary);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.875rem;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

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

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  padding: 2.5rem;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
}

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

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

.thank-you-message svg {
  color: var(--success-color);
  margin: 0 auto 1.5rem;
}

.thank-you-message h2 {
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 2rem;
}

/* About Page Styles */
.about-intro {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-vision {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-box,
.vision-box,
.values-box {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

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

.icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(45, 99, 237, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

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

.team-section {
  padding: 5rem 0;
}

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

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

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

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-member h3 {
  margin: 1.5rem 0 0.25rem;
  font-size: 1.25rem;
}

.team-member p {
  margin-bottom: 0.75rem;
  padding: 0 1.5rem;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto 2rem;
}

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

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

.social-links svg {
  color: var(--primary-color);
  transition: var(--transition);
}

.social-links a:hover svg {
  color: white;
}

.achievements {
  padding: 5rem 0;
  background-image: linear-gradient(to right, rgba(25, 32, 53, 0.9), rgba(25, 32, 53, 0.7)), url('images/achievements-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

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

.achievements .section-title::after {
  background: var(--secondary-color);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.achievement-text {
  font-size: 1.125rem;
  opacity: 0.9;
}

.partners {
  padding: 5rem 0;
}

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

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

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

/* Blog Post Styles */
.blog-post-content {
  padding: 8rem 0 5rem;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 2rem;
}

.post-header h1 {
  margin-bottom: 1.25rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--gray-color);
}

.post-featured-image {
  margin-bottom: 2.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-intro {
  font-size: 1.25rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.post-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-body h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.post-body h4 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-body ul, 
.post-body ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.post-body li {
  margin-bottom: 0.75rem;
}

.post-body pre {
  background-color: #f6f8fa;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 2rem;
}

.post-body code {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #476582;
}

.post-tags {
  margin-top: 3rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 2rem;
}

.post-tags h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.post-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-left: 0;
}

.post-tags ul li a {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(45, 99, 237, 0.1);
  border-radius: 30px;
  color: var(--primary-color);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.post-author-bio {
  display: flex;
  gap: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 3rem;
}

.author-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info h3 {
  font-size: 1rem;
  color: var(--gray-color);
  margin-bottom: 0.5rem;
}

.author-info h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.author-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.related-posts {
  margin-top: 5rem;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

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

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

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

.related-post h3 {
  font-size: 1.125rem;
  padding: 1.25rem 1.25rem 0.5rem;
}

.related-post p {
  padding: 0 1.25rem 1.25rem;
  margin-bottom: 0;
  color: var(--gray-color);
  font-size: 0.875rem;
}

.post-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
}

.prev-post, 
.next-post, 
.back-to-blog {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-weight: 600;
  transition: var(--transition);
}

.prev-post svg, 
.next-post svg, 
.back-to-blog svg {
  margin: 0 0.5rem;
  transition: var(--transition);
}

.prev-post:hover, 
.next-post:hover, 
.back-to-blog:hover {
  color: var(--primary-color);
}

.prev-post:hover svg {
  transform: translateX(-5px);
}

.next-post:hover svg, 
.back-to-blog:hover svg {
  transform: translateX(5px);
}

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .about-content,
  .beginners-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
  
  .blog-text {
    padding: 1.5rem;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .post-author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .post-nav-links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .cookie-consent {
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark Mode Styles (future implementation) */
@media (prefers-color-scheme: dark) {
  :root {
    /* Dark mode will be implemented in the future */
  }
}
