/* 
Growth Coaching Blog - Main Stylesheet
Created: 2024
*/

/* ===== Base Styles ===== */
:root {
  --primary: #5a67d8;
  --primary-dark: #434190;
  --primary-light: #c3dafe;
  --secondary: #38b2ac;
  --dark: #2d3748;
  --dark-light: #4a5568;
  --gray: #a0aec0;
  --gray-light: #e2e8f0;
  --gray-lighter: #f7fafc;
  --success: #48bb78;
  --warning: #ed8936;
  --danger: #e53e3e;
  --white: #ffffff;
  --black: #000000;
  --body-font: 'Open Sans', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
  --border-radius: 6px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

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

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

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

/* ===== Buttons ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

/* ===== Header ===== */
header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo img {
  height: 50px;
  border-radius: 50%;
}

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

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

nav ul li a {
  color: var(--dark);
  font-weight: 500;
  font-family: var(--heading-font);
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

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

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

/* ===== Hero Section ===== */
.hero {
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background-color: var(--gray-lighter);
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--dark-light);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
  z-index: 1;
}

.hero-image img {
  max-width: 90%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--gray-lighter);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

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

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

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

.feature-card p {
  color: var(--dark-light);
  margin-bottom: 0;
}

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

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px 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;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.post-date {
  margin-right: 1rem;
}

.post-category {
  color: var(--secondary);
}

.post-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.4;
}

.post-content h3 a {
  color: var(--dark);
}

.post-content h3 a:hover {
  color: var(--primary);
}

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

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

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

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

/* ===== Comparison Table Section ===== */
.comparison-table {
  padding: 5rem 0;
  background-color: var(--white);
}

.table-responsive {
  overflow-x: auto;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.comparison th, 
.comparison td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.comparison th {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}

.comparison tr:hover {
  background-color: var(--gray-lighter);
}

.comparison tr:nth-child(even) {
  background-color: var(--gray-lighter);
}

/* ===== Fun Fact Section ===== */
.fun-fact {
  padding: 4rem 0;
  background-color: var(--primary-light);
}

.fact-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fact-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.fact-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.fact-card p {
  color: var(--dark-light);
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 5rem 0;
  background-color: var(--gray-lighter);
}

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

.testimonial {
  display: none;
  padding: 1rem;
}

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

.testimonial-content:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--white);
  transform: rotate(45deg);
}

.testimonial-content p {
  font-style: italic;
  color: var(--dark-light);
  margin-bottom: 0;
}

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

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

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

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

/* ===== Newsletter Section ===== */
.newsletter {
  padding: 5rem 0;
  background-color: var(--primary-dark);
  color: var(--white);
}

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

.newsletter-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: var(--primary-light);
  margin-bottom: 2rem;
}

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

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

.newsletter-form button {
  flex-shrink: 0;
}

.form-note {
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-top: 1rem;
}

/* ===== Footer ===== */
footer {
  background-color: var(--dark);
  color: var(--gray-light);
  padding: 5rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.footer-logo p {
  color: var(--gray);
  font-size: 0.9375rem;
}

.footer-links h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

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

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

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

.footer-contact h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

.footer-contact address {
  font-style: normal;
}

.footer-contact address p {
  margin-bottom: 0.75rem;
  color: var(--gray);
  display: flex;
  align-items: center;
}

.footer-contact address p svg {
  margin-right: 0.75rem;
  color: var(--primary);
}

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

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

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

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

.copyright {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ===== Cookie Consent ===== */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content {
  padding: 1.5rem;
  text-align: center;
}

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

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

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

.btn-cookie-accept:hover {
  background-color: #2f855a;
}

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

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

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

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

.cookie-policy-link {
  font-size: 0.875rem;
  text-decoration: underline;
}

/* ===== Page Header ===== */
.page-header {
  background-color: var(--primary-light);
  padding: 3rem 0;
  text-align: center;
}

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

.page-header p {
  color: var(--dark-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* ===== Blog Content ===== */
.blog-content {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

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

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

.about-text h2 {
  margin-top: 0;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 2rem;
}

.values-list {
  list-style: none;
}

.values-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.team-section {
  padding: 5rem 0;
  background-color: var(--gray-lighter);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

.team-member img {
  width: 100%;
  height: auto;
  display: block;
}

.team-member h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--gray);
  margin-bottom: 1rem;
  padding: 0 1.5rem;
}

.team-member .social-links {
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.team-member .social-links a {
  background-color: var(--gray-light);
  color: var(--dark);
  width: 36px;
  height: 36px;
}

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

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

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

.credentials-text p {
  margin-bottom: 1.5rem;
}

.credentials-list {
  list-style: none;
  margin-left: 0;
}

.credentials-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.credentials-list li:before {
  content: "✓";
  color: var(--success);
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

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

.cta-content h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  color: var(--dark-light);
}

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

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

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

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

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

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

.info-text h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-size: 1.125rem;
}

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

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

.social-connect h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-size: 1.125rem;
}

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

.contact-form-container h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  color: var(--dark);
}

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

.form-group {
  margin-bottom: 0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  background-color: var(--gray-lighter);
  transition: var(--transition);
}

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

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

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

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

.form-submit {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.map-section {
  padding-bottom: 5rem;
}

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

.map-placeholder {
  position: relative;
  height: 100%;
}

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

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 55, 72, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.map-overlay p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

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

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
}

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

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

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 2rem;
}

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

.post-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.post-header h1 {
  margin: 1rem 0 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.post-author p {
  margin-bottom: 0;
  text-align: left;
}

.post-featured-image {
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  max-height: 500px;
}

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

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

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 2.5rem;
}

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

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-tags span {
  margin-right: 1rem;
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--gray-lighter);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--dark-light);
  transition: var(--transition);
}

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

.post-share {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.post-share span {
  margin-right: 1rem;
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  background-color: var(--gray-lighter);
  border-radius: 50%;
  color: var(--dark);
  transition: var(--transition);
}

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

.related-posts {
  padding: 5rem 0;
  background-color: var(--gray-lighter);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-newsletter {
  margin-top: 0;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 1024px) {
  .feature-cards,
  .posts-grid,
  .team-grid,
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    flex-direction: column;
    padding: 3rem 0;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  nav ul {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: none;
    z-index: 10;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    margin: 0 0 1rem 0;
  }
  
  .mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .feature-cards,
  .posts-grid,
  .blog-grid,
  .team-grid,
  .related-posts-grid,
  .about-content,
  .credentials-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    gap: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    margin-bottom: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .comparison th, 
  .comparison td {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .post-header .post-meta {
    flex-direction: column;
    align-items: center;
  }
  
  .post-header .post-meta .post-date {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
