/* Base Styles */
:root {
  --primary-color: #4a6fa5;
  --primary-dark: #345280;
  --primary-light: #6b8cbc;
  --secondary-color: #e67e22;
  --secondary-dark: #d35400;
  --accent-color: #8e44ad;
  --text-color: #333;
  --text-light: #666;
  --text-dark: #222;
  --background-color: #fff;
  --background-light: #f9f9f9;
  --background-dark: #f0f0f0;
  --border-color: #ddd;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --warning-color: #f39c12;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--font-primary);
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

nav a:hover,
nav a.active {
  color: var(--primary-color);
}

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

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

.ask-question-btn {
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
}

.ask-question-btn:hover {
  background-color: #7d3c98;
  color: white;
}

.ask-question-btn::after {
  display: none;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: #f0f4f8;
}

.hero-content {
  max-width: 600px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Featured Posts Section */
.featured-posts {
  padding: 4rem 0;
}

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

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

.post-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  background-color: white;
}

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

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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

.read-more:hover {
  color: var(--primary-dark);
}

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

/* Beginners Guide Section */
.beginners-guide {
  padding: 4rem 0;
  background-color: #f8f4f0;
}

.beginners-guide .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.beginners-content {
  flex: 1;
}

.beginners-image {
  flex: 1;
}

.beginners-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.beginners-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.beginners-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.beginners-list .icon {
  font-size: 1.5rem;
}

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

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

.newsletter p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.newsletter-form button {
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  background-color: var(--secondary-color);
}

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
}

/* Footer */
footer {
  background-color: #1e293b;
  color: #e2e8f0;
  padding: 4rem 0 2rem;
}

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

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

.footer-logo h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

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

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

.footer-links a {
  color: #e2e8f0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #94a3b8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 41, 59, 0.95);
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

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

.cookie-btn.customize {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.cookie-btn.reject {
  background-color: transparent;
  color: #94a3b8;
}

.cookie-policy-link {
  color: #94a3b8;
  margin-left: auto;
  font-size: 0.9rem;
}

.cookie-policy-link:hover {
  color: white;
  text-decoration: underline;
}

/* Modal */
.question-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

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

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.question-modal h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

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

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
}

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

/* Blog Page Styles */
.blog-header {
  background-color: #f0f4f8;
  padding: 3rem 0;
  text-align: center;
}

.blog-header h2 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.blog-content {
  padding: 3rem 0;
}

.blog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-bar {
  display: flex;
  max-width: 400px;
  width: 100%;
}

.search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  font-size: 1rem;
}

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

.category-filter select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  min-width: 180px;
}

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

.blog-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  background-color: white;
  display: flex;
  flex-direction: column;
}

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

.blog-image {
  height: 220px;
  overflow: hidden;
}

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

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

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-light);
  color: white;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  margin-top: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.blog-pagination a,
.blog-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

.blog-pagination .current-page {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.blog-pagination .next-page {
  width: auto;
  padding: 0 1rem;
}

/* Beginners Section on Blog Page */
.beginners-section {
  padding: 4rem 0;
  background-color: #f8f4f0;
}

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

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

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

.beginners-card:hover {
  transform: translateY(-5px);
}

.beginners-icon {
  margin-bottom: 1.5rem;
}

.beginners-icon .icon {
  font-size: 3rem;
}

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

.beginners-card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Contact Page Styles */
.contact-header {
  background-color: #f0f4f8;
  padding: 3rem 0;
  text-align: center;
}

.page-header h2 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.contact-section {
  padding: 4rem 0;
}

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

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

.contact-info p {
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
}

.contact-text p {
  margin-bottom: 0;
  color: var(--text-light);
}

.social-connect h4 {
  margin-bottom: 1rem;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

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

.full-width {
  grid-column: 1 / -1;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.map-section {
  padding: 3rem 0;
}

.map-section h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.faq-section h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.thank-you-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

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

.thank-you-icon {
  margin-bottom: 1.5rem;
  color: var(--success-color);
}

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

.thank-you-content p {
  margin-bottom: 1.5rem;
}

/* About Page Styles */
.about-header {
  background-color: #f0f4f8;
  padding: 3rem 0;
  text-align: center;
}

.about-story {
  padding: 4rem 0;
}

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

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

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-values {
  padding: 4rem 0;
  background-color: #f8f4f0;
}

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

.mission-box,
.values-box {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.values-list li:last-child {
  margin-bottom: 0;
}

.value-icon {
  font-size: 1.25rem;
}

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

.team-section h3,
.team-intro {
  text-align: center;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.team-member {
  text-align: center;
  transition: transform var(--transition-medium);
}

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

.team-member img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  margin-bottom: 1.25rem;
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

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

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

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: var(--text-color);
  transition: all var(--transition-fast);
}

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

.testimonials {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.testimonials h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.testimonial-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

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

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

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

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  margin-bottom: 0;
  color: var(--text-light);
}

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

.testimonial-navigation button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.testimonial-navigation button:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.partners-section {
  padding: 4rem 0;
}

.partners-section h3,
.partners-section p {
  text-align: center;
}

.partners-section p {
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all var(--transition-medium);
}

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

.join-team {
  padding: 4rem 0;
  background-color: var(--primary-color);
}

.join-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.join-content h3 {
  color: white;
  margin-bottom: 1rem;
}

.join-content p {
  margin-bottom: 1.5rem;
}

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

.join-content .btn:hover {
  background-color: rgba(255,255,255,0.9);
}

/* Blog Post Styles */
.post-header {
  background-color: #f0f4f8;
  padding: 3rem 0;
}

.post-header .container {
  max-width: 800px;
}

.post-header h1 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.post-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-light);
  color: white;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-light);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-author .author-image {
  width: 40px;
  height: 40px;
}

.post-content {
  padding: 3rem 0;
}

.post-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
}

.post-text h2 {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.post-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.post-intro {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.technique-example {
  margin: 2rem 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.caption {
  padding: 1rem;
  background-color: #f8f9fa;
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0;
}

.note-box {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin: 2rem 0;
  border-left: 4px solid var(--primary-color);
}

.note-box h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.note-box p {
  margin-bottom: 0;
}

.post-conclusion {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.tag-label {
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #f0f4f8;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  color: var(--text-color);
  transition: all var(--transition-fast);
}

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

.share-post {
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.share-post h3 {
  margin-bottom: 1rem;
}

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

.share-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.share-button.facebook {
  background-color: #3b5998;
  color: white;
}

.share-button.twitter {
  background-color: #1da1f2;
  color: white;
}

.share-button.pinterest {
  background-color: #bd081c;
  color: white;
}

.share-button.email {
  background-color: #f0f4f8;
  color: var(--text-color);
}

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

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

.post-author-bio .author-image {
  width: 100px;
  height: 100px;
}

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

.post-author-bio h4 {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.post-author-bio p {
  margin-bottom: 1rem;
}

.sidebar-widget {
  margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h3 {
  margin-bottom: 1.25rem;
}

.related-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.related-post:last-child {
  margin-bottom: 0;
}

.related-post img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
}

.related-post-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

.sidebar-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-newsletter-form input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-navigation {
  padding: 2rem 0;
  background-color: #f8f9fa;
}

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

.nav-previous,
.nav-next {
  max-width: 45%;
  display: flex;
  flex-direction: column;
}

.nav-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.nav-title {
  font-weight: 600;
  color: var(--primary-color);
}

.comments-section {
  padding: 3rem 0;
}

.comments-section h3 {
  margin-bottom: 2rem;
}

.comments-list {
  margin-bottom: 3rem;
}

.comment {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.comment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.comment-reply {
  margin-left: 3rem;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

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

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.comment-header h4 {
  margin-bottom: 0;
}

.comment-date {
  font-size: 0.9rem;
  color: var(--text-light);
}

.comment-text p {
  margin-bottom: 0.75rem;
}

.comment-actions a {
  font-size: 0.9rem;
  font-weight: 600;
}

.comment-form-container h3 {
  margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  .beginners-guide .container {
    flex-direction: column;
  }
  
  .beginners-content {
    order: 2;
  }
  
  .beginners-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .post-content .container {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    order: 2;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo {
    justify-content: center;
  }
  
  nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 1.5rem;
  }
  
  .post-author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .share-buttons {
    justify-content: center;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-policy-link {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .blog-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .comment {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: center;
  }
  
  .comment-reply {
    margin-left: 1.5rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .nav-previous,
  .nav-next {
    max-width: 100%;
    text-align: center;
  }
}
