/* Base Styles */
:root {
  --primary-color: #6a5b4c;
  --primary-dark: #4e4238;
  --primary-light: #a08e7b;
  --secondary-color: #c7b299;
  --accent-color: #d9bfa9;
  --text-color: #333333;
  --text-light: #666666;
  --text-dark: #1a1a1a;
  --background-color: #ffffff;
  --background-light: #f9f7f5;
  --background-dark: #e6e1da;
  --border-color: #e0d6cc;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 80px;
  --font-family: 'Poppins', sans-serif;
  --font-family-heading: 'Playfair Display', serif;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

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

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

ul, ol {
  list-style: none;
}

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

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

/* Custom Frame for Images */
.custom-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.custom-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid var(--primary-light);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.custom-frame img {
  transition: var(--transition);
  display: block;
}

.custom-frame:hover img {
  transform: scale(1.05);
}

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

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

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

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

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.8rem;
  margin-top: -2rem;
  margin-bottom: 4rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
}

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

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.4rem;
}

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

/* Header */
.main-header {
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo img {
  max-height: 50px;
}

.main-nav ul {
  display: flex;
  gap: 3rem;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

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

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

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

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

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

/* Hero Section */
.hero {
  padding: 8rem 0;
  background-color: var(--background-light);
}

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

.hero-content {
  flex: 1;
}

.hero-content h1 {
  margin-bottom: 2rem;
  font-size: 4.8rem;
}

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

.hero-image {
  flex: 1;
}

/* Features Section */
.features {
  padding: 8rem 0;
}

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

.feature-card {
  text-align: center;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--background-light);
  transition: var(--transition);
}

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

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

.feature-icon svg {
  width: 40px;
  height: 40px;
}

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

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

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

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

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

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

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

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

.post-content {
  padding: 2.5rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
}

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

.testimonial-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--primary-light);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

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

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

/* CTA Section */
.cta {
  padding: 8rem 0;
  background-color: var(--primary-light);
  color: white;
}

.cta .container {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta-content p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

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

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

.cta-image {
  flex: 1;
}

/* Footer */
.main-footer {
  padding-top: 8rem;
  background-color: var(--text-dark);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  max-height: 50px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

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

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--secondary-color);
}

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

.footer-contact p {
  margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
}

.legal-links a:hover {
  color: var(--secondary-color);
}

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

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

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

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

.blog-filter {
  margin-bottom: 4rem;
  text-align: center;
}

.blog-filter h2 {
  margin-bottom: 2rem;
}

.filter-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-list a {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  background-color: var(--background-light);
  color: var(--text-color);
  transition: var(--transition);
}

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

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

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

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

.blog-image {
  height: 250px;
}

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

.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.blog-category {
  color: var(--primary-color);
  font-weight: 500;
}

.blog-date {
  color: var(--text-light);
}

.blog-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.blog-card-content .btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}

.pagination-number,
.pagination-prev,
.pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  color: var(--text-color);
  transition: var(--transition);
}

.pagination-prev,
.pagination-next {
  width: auto;
  padding: 0 1.5rem;
  border-radius: 2rem;
}

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

.pagination .disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Newsletter */
.newsletter {
  padding: 8rem 0;
  background-color: var(--background-light);
}

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

.newsletter-content h2 {
  margin-bottom: 2rem;
}

.newsletter-content p {
  margin-bottom: 3rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1.2rem 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 2rem;
  display: none;
}

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

.cookie-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.cookie-btn {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.4rem;
}

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

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

.cookie-btn.reject {
  background-color: var(--text-light);
  color: white;
}

.cookie-policy {
  font-size: 1.4rem;
  margin-bottom: 0;
}

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

.about-grid {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

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

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

.mission-card {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  text-align: center;
}

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

.mission-icon svg {
  width: 40px;
  height: 40px;
}

.mission-card h3 {
  margin-bottom: 1.5rem;
}

.about-process {
  padding: 8rem 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 3rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-light);
}

.step-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-team {
  padding: 8rem 0;
  background-color: var(--background-light);
}

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

.team-member {
  text-align: center;
}

.member-image {
  width: 100%;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
}

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

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

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

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 500;
}

.about-stats {
  padding: 8rem 0;
}

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

.stat-card {
  text-align: center;
  padding: 3rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
}

.stat-number {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-card p {
  margin-bottom: 0;
  font-size: 1.8rem;
  color: var(--text-light);
}

/* Contact Page */
.contact-content {
  padding: 8rem 0;
}

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

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

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

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

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

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

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

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

.social-connect h3 {
  margin-bottom: 2rem;
}

.social-connect .social-icons {
  flex-wrap: wrap;
}

.social-connect .social-icons a {
  width: auto;
  height: auto;
  background-color: transparent;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
}

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

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

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

.contact-form-wrapper p {
  margin-bottom: 3rem;
  color: var(--text-light);
}

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

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 1.6rem;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5em;
  padding-right: 4rem;
}

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

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

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

.contact-form .btn-primary {
  width: 100%;
}

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

.map-wrapper {
  height: 450px;
  background-color: #eee;
  overflow: hidden;
}

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

.faq {
  padding: 8rem 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--background-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  cursor: pointer;
}

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

.faq-toggle {
  font-size: 2.4rem;
  color: var(--primary-color);
}

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

.faq-answer p {
  margin-bottom: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

/* Thank You Popup */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.popup-content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.popup-content h3 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.popup-content p {
  margin-bottom: 3rem;
}

.close-popup {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.close-popup:hover {
  background-color: var(--primary-dark);
}

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

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

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.post-category {
  color: var(--primary-color);
  font-weight: 500;
}

.post-date {
  color: var(--text-light);
}

.post-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

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

.post-featured-image {
  max-width: 1000px;
  margin: 0 auto 4rem;
  height: 500px;
}

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

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

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.post-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 1rem;
}

.post-quote {
  margin: 4rem 0;
  padding: 3rem;
  background-color: var(--background-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
}

.post-quote blockquote {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.post-quote cite {
  font-style: normal;
  color: var(--primary-color);
  font-weight: 500;
}

.post-image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
}

.gallery-item {
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-cta {
  margin: 6rem 0;
  padding: 3rem;
  background-color: var(--background-light);
  text-align: center;
  border-radius: var(--border-radius-lg);
}

.post-cta h3 {
  margin-bottom: 1.5rem;
}

.post-cta p {
  margin-bottom: 2rem;
}

.post-tags {
  margin: 4rem 0;
}

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

.post-tags a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--background-light);
  border-radius: 2rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

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

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

.post-share span {
  font-weight: 500;
  margin-right: 1.5rem;
}

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

.post-share a:hover {
  color: white;
}

.post-share a.share-facebook:hover {
  background-color: #1877f2;
}

.post-share a.share-twitter:hover {
  background-color: #1da1f2;
}

.post-share a.share-linkedin:hover {
  background-color: #0a66c2;
}

.post-share a.share-pinterest:hover {
  background-color: #e60023;
}

.post-share a svg {
  width: 20px;
  height: 20px;
}

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

.author-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

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

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

.author-title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

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

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

.author-social svg {
  width: 18px;
  height: 18px;
}

.related-posts {
  margin: 6rem 0;
}

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

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

.related-post {
  text-align: center;
}

.related-image {
  height: 200px;
  margin-bottom: 2rem;
}

.related-post h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  html {
    font-size: 58%;
  }
  
  .hero .container,
  .about-grid,
  .cta .container {
    flex-direction: column;
    gap: 4rem;
  }
  
  .hero-image,
  .about-image,
  .cta-image {
    order: -1;
  }
  
  .features-grid,
  .posts-grid,
  .testimonials-slider,
  .mission-grid,
  .process-steps,
  .stats-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 6rem 2rem;
    transform: translateX(-100%);
    transition: var(--transition);
  }
  
  .main-nav.active {
    transform: translateX(0);
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .features-grid,
  .posts-grid,
  .testimonials-slider,
  .mission-grid,
  .process-steps,
  .stats-grid,
  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 3rem 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .post-author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 50%;
  }
  
  .hero-content h1,
  .page-header h1 {
    font-size: 3.6rem;
  }
  
  .post-featured-image {
    height: 300px;
  }
  
  .post-image-gallery {
    grid-template-columns: 1fr;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
