/* Base Styles and Typography */
:root {
  --primary: #4D67ED;
  --primary-dark: #3950C9;
  --secondary: #6D4AFF;
  --accent: #FF5678;
  --dark: #1C1C28;
  --light: #F9F9FC;
  --gray-100: #F4F4F8;
  --gray-200: #E8E8EF;
  --gray-300: #D1D1DB;
  --gray-400: #9D9DAD;
  --gray-500: #6E6E80;
  --gray-600: #49495A;
  --gray-700: #34343E;
  --gray-800: #27272F;
  --success: #34D399;
  --warning: #FBBF24;
  --error: #F87171;
  --info: #60A5FA;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.3;
  color: var(--gray-800);
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.2rem;
}

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

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

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

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

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  font-size: 2rem;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* Header and Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--gray-800);
  font-weight: 700;
  font-size: 1.4rem;
}

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

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

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
}

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

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

nav ul li a.active:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--gray-700);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(77, 103, 237, 0.1) 0%, rgba(109, 74, 255, 0.1) 100%);
}

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

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray-600);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: white;
}

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

.feature-card {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(77, 103, 237, 0.1);
  border-radius: 50%;
  color: var(--primary);
}

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

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

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

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

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

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

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

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

.post-content {
  padding: 1.5rem;
}

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

.post-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

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

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

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

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Expert Interview Section */
.expert-interview {
  padding: 5rem 0;
  background-color: white;
}

.interview-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

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

.interview-content h3 {
  margin-bottom: 0.5rem;
}

.expert-title {
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.interview-qa p {
  margin-bottom: 1rem;
}

.interview-qa p strong {
  color: var(--primary);
}

/* Newsletter Section */
.newsletter {
  padding: 4rem 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--accent);
}

.newsletter-form .btn:hover {
  background-color: #e74968;
}

/* Footer */
footer {
  background-color: var(--gray-800);
  color: var(--gray-300);
  padding-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-700);
}

.footer-logo img {
  height: 40px;
  width: 40px;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.footer-logo p {
  max-width: 300px;
}

.footer-links h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

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

.footer-links ul li a {
  color: var(--gray-300);
}

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

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

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

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

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--gray-800);
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  display: none;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
  flex: 1;
  margin-bottom: 0;
  min-width: 300px;
}

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

.btn-accept, .btn-customize, .btn-decline {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.btn-customize {
  background-color: var(--gray-600);
  color: white;
}

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

.btn-accept:hover, .btn-customize:hover {
  opacity: 0.9;
}

.btn-decline:hover {
  background-color: var(--gray-700);
}

.cookie-more {
  color: var(--gray-300);
  text-decoration: underline;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.cookie-more:hover {
  color: white;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(77, 103, 237, 0.1) 0%, rgba(109, 74, 255, 0.1) 100%);
  padding: 3rem 0;
  text-align: center;
}

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

.page-header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 1.2rem;
}

/* Blog Posts Page */
.blog-posts {
  padding: 4rem 0;
}

.posts-filter {
  margin-bottom: 3rem;
}

.search-bar {
  display: flex;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.search-bar input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.search-bar button {
  padding: 0 1.5rem;
  background-color: var(--primary);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar button:hover {
  background-color: var(--primary-dark);
}

.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-btn {
  padding: 0.5rem 1rem;
  background-color: var(--gray-200);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn.active, .category-btn:hover {
  background-color: var(--primary);
  color: white;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.post-category {
  background-color: rgba(77, 103, 237, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  background-color: var(--gray-200);
  color: var(--gray-700);
  font-weight: 600;
  transition: var(--transition);
}

.pagination a:hover, .pagination a.active {
  background-color: var(--primary);
  color: white;
}

/* About Page */
.about-story {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

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

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

.mission-values {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

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

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

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

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(77, 103, 237, 0.1);
  border-radius: 50%;
  color: var(--primary);
}

.team-section {
  padding: 4rem 0;
  background-color: white;
}

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

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

.team-card h3 {
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--gray-200);
  border-radius: 50%;
  color: var(--gray-700);
  transition: var(--transition);
}

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

.testimonials {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.2rem;
}

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

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-testimonial, .next-testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--gray-600);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.prev-testimonial:hover, .next-testimonial:hover {
  background-color: var(--primary);
  color: white;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

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

.contact-methods {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
}

.method-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(77, 103, 237, 0.1);
  border-radius: 50%;
  color: var(--primary);
  margin-right: 1rem;
}

.method-details h3 {
  margin-bottom: 0.5rem;
}

.method-details p {
  color: var(--gray-600);
  margin-bottom: 0;
}

.method-details a {
  color: var(--gray-600);
}

.method-details a:hover {
  color: var(--primary);
}

.social-mini-icons {
  display: flex;
  gap: 0.8rem;
}

.social-mini-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--gray-200);
  border-radius: 50%;
  color: var(--gray-700);
  transition: var(--transition);
}

.social-mini-icons a:hover {
  background-color: var(--primary);
  color: white;
}

.business-hours h3 {
  margin-bottom: 1rem;
}

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

.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: 500;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(77, 103, 237, 0.2);
}

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

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

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.checkbox-group label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

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

.faq-section {
  padding: 4rem 0;
  background-color: white;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-icon {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
}

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

.modal-content {
  background-color: white;
  max-width: 500px;
  width: 90%;
  border-radius: var(--border-radius);
  position: relative;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--gray-500);
  cursor: pointer;
}

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

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

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

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

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

/* Blog Post Page */
.blog-post {
  padding: 4rem 0;
}

.post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.post-excerpt {
  font-size: 1.2rem;
  color: var(--gray-600);
}

.post-featured-image {
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

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

.table-of-contents {
  background-color: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2.5rem;
}

.table-of-contents h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.table-of-contents ul {
  list-style: none;
}

.table-of-contents ul li {
  margin-bottom: 0.5rem;
}

.table-of-contents ul li a {
  color: var(--gray-700);
  transition: var(--transition);
}

.table-of-contents ul li a:hover {
  color: var(--primary);
}

.post-content section {
  margin-bottom: 3rem;
}

.post-content section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.post-content ul, .post-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--gray-600);
  margin: 2rem 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 3rem 0;
}

.post-tags span {
  color: var(--gray-700);
  font-weight: 600;
}

.post-tags a {
  background-color: var(--gray-200);
  color: var(--gray-700);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.author-bio {
  display: flex;
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.author-bio img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 1.5rem;
  object-fit: cover;
}

.author-info h3 {
  margin-bottom: 0.5rem;
}

.author-info p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.author-social {
  display: flex;
  gap: 0.8rem;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--gray-300);
  border-radius: 50%;
  color: var(--gray-700);
  transition: var(--transition);
}

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.back-to-blog {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  font-weight: 500;
}

.back-to-blog svg {
  margin-right: 5px;
}

.post-nav-links {
  display: flex;
  gap: 1rem;
}

.prev-post, .next-post {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  font-weight: 500;
}

.prev-post svg {
  margin-right: 5px;
}

.next-post svg {
  margin-left: 5px;
}

.related-posts {
  margin-bottom: 4rem;
}

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

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

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

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

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

.related-card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Custom post content elements */
.brush-showcase, .color-models .color-model-content, .step-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.content-card {
  background-color: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

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

.card-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(77, 103, 237, 0.1);
  border-radius: 50%;
  color: var(--primary);
}

.feature-desc h3 {
  margin-bottom: 0.5rem;
}

.technique-tip {
  background-color: rgba(255, 86, 120, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
}

.technique-tip h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.color-psychology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.color-sample {
  height: 100px;
  width: 100%;
}

.color-psych-card h3 {
  padding: 1rem 1rem 0.5rem;
  margin-bottom: 0;
}

.color-psych-card p {
  padding: 0 1rem 1rem;
  margin-bottom: 0;
}

.platform-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.platform-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platform-header h3 {
  margin-bottom: 0;
}

.platform-tags {
  display: flex;
  gap: 0.5rem;
}

.platform-tags .tag {
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tag.professional {
  background-color: rgba(255, 86, 120, 0.1);
  color: var(--accent);
}

.tag.all-levels {
  background-color: rgba(77, 103, 237, 0.1);
  color: var(--primary);
}

.tag.portfolio, .tag.community, .tag.specialized, .tag.education, .tag.networking, .tag.feedback, .tag.visibility {
  background-color: rgba(52, 211, 153, 0.1);
  color: var(--success);
}

.platform-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 1.5rem;
}

.platform-image img {
  border-radius: var(--border-radius);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.platform-details p {
  margin-bottom: 1rem;
}

.platform-details ul {
  margin-bottom: 1rem;
}

.platform-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

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

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

.tip-card, .benefit-card, .mistake-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(77, 103, 237, 0.1);
  border-radius: 50%;
  color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container, .about-grid, .interview-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-logo {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer-logo p {
    max-width: none;
  }
  
  .about-content {
    order: 1;
  }
  
  .about-image {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .brush-showcase, .color-models .color-model-content, .step-content, .card-content {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  nav ul {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .post-grid, .values-grid, .team-grid, .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form .btn {
    border-radius: var(--border-radius);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    grid-column: span 1;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-bio img {
    margin: 0 auto 1.5rem;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 1rem;
  }
}
