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

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #c5a47e;
  --accent-color: #8b7355;
  --text-color: #333;
  --light-bg: #f8f6f3;
  --white: #ffffff;
  --dark: #16213e;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

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

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.container-full {
  width: 100%;
}

.main-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-section img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.font-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
}

.font-btn:hover {
  background-color: var(--accent-color);
}

.hero-section,
.page-hero {
  background: linear-gradient(rgba(26,26,46,0.8), rgba(26,26,46,0.8)), url('images/1.jpg') center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26,26,46,0.7);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-cta,
.btn-service,
.btn-pricing,
.btn-submit,
.btn-widget,
.btn-newsletter,
.btn-modal-close {
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary,
.btn-cta,
.btn-submit {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover,
.btn-cta:hover,
.btn-submit:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

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

.features-section,
.services-preview,
.testimonials-section,
.stats-section,
.about-intro,
.team-section,
.history-section,
.certifications-section,
.services-detailed,
.process-section,
.pricing-section,
.faq-section,
.blog-content,
.newsletter-section,
.blog-categories {
  padding: 80px 0;
}

.features-section {
  background-color: var(--light-bg);
}

.features-grid,
.services-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card,
.service-item,
.team-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover,
.service-item:hover,
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature-card h3,
.service-item h3,
.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-item img,
.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.team-card img {
  height: 400px;
}

.service-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-color);
}

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

.testimonials-section .section-title {
  color: var(--white);
}

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

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.testimonial-rating {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author strong {
  display: block;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.stats-section {
  background-color: var(--light-bg);
}

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

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

.stat-label {
  font-size: 1.1rem;
  color: var(--text-color);
}

.main-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-col h4 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--secondary-color);
}

.footer-reg {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-social a {
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

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

.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  padding: 30px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.cookie-btn.reject {
  background-color: #e74c3c;
  color: var(--white);
}

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

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cookie-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary-color);
  text-decoration: underline;
}

.about-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.about-intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-item {
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: 10px;
  text-align: center;
}

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.team-position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  line-height: 1.8;
  text-align: left;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--secondary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-year {
  position: absolute;
  left: -50px;
  top: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-weight: 700;
}

.timeline-content {
  background-color: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
  margin-left: 40px;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.cert-item {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.cert-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.service-detail-block.reverse {
  direction: rtl;
}

.service-detail-block.reverse > * {
  direction: ltr;
}

.service-detail-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-detail-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin: 30px 0;
}

.service-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.8;
}

.service-list li strong {
  color: var(--secondary-color);
}

.service-detail-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-service {
  background-color: var(--secondary-color);
  color: var(--white);
  margin-top: 20px;
}

.btn-service:hover {
  background-color: var(--accent-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: 10px;
}

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

.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pricing-section {
  background-color: var(--light-bg);
}

.pricing-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.pricing-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: var(--transition);
}

.pricing-card.featured {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.pricing-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 20px 0;
}

.price-desc {
  color: var(--text-color);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-features li::before {
  content: '✓ ';
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 10px;
}

.btn-pricing {
  background-color: var(--secondary-color);
  color: var(--white);
  width: 100%;
}

.btn-pricing:hover {
  background-color: var(--accent-color);
}

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

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: var(--light-bg);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 25px;
  line-height: 1.8;
}

.blog-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.blog-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

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

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

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-card-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-card-content h3 {
  margin-bottom: 15px;
}

.blog-card-content h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.blog-card-content h3 a:hover {
  color: var(--secondary-color);
}

.blog-read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.blog-read-more:hover {
  color: var(--accent-color);
}

.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--dark));
  color: var(--white);
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.newsletter-form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

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

.btn-newsletter:hover {
  background-color: var(--accent-color);
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.category-tag {
  background-color: var(--light-bg);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.category-tag:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.contact-text h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.contact-text a:hover {
  color: var(--secondary-color);
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(197,164,126,0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin: 0;
}

.checkbox-group a {
  color: var(--secondary-color);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 50px;
}

.map-container iframe {
  width: 100%;
  border-radius: 10px;
}

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

.modal.show {
  display: flex;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-color);
}

.modal-icon {
  color: #27ae60;
  margin-bottom: 20px;
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.btn-modal-close {
  background-color: var(--secondary-color);
  color: var(--white);
  margin-top: 20px;
}

.post-article {
  padding: 40px 0;
}

.post-header {
  background-color: var(--light-bg);
  padding: 40px 0;
}

.post-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.post-breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
}

.post-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #888;
  font-size: 0.95rem;
}

.post-featured-image {
  max-width: 1200px;
  margin: -50px auto 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.post-featured-image img {
  width: 100%;
  display: block;
}

.post-content {
  margin-top: 50px;
}

.post-content .container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}

.post-body {
  line-height: 1.9;
}

.post-intro {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid var(--secondary-color);
}

.post-body h2 {
  color: var(--primary-color);
  margin: 40px 0 20px;
  font-size: 2rem;
}

.post-body h3 {
  color: var(--primary-color);
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.post-body p {
  margin-bottom: 20px;
  line-height: 1.9;
}

.post-body ul,
.post-body ol {
  margin: 20px 0 20px 30px;
}

.post-body li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.post-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background-color: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.author-card {
  text-align: center;
}

.author-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.author-card h4 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.recent-posts {
  list-style: none;
}

.recent-posts li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.recent-posts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-posts a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.6;
}

.recent-posts a:hover {
  color: var(--secondary-color);
}

.cta-widget {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--white);
}

.cta-widget h3 {
  color: var(--white);
}

.btn-widget {
  background-color: var(--white);
  color: var(--secondary-color);
  width: 100%;
}

.btn-widget:hover {
  background-color: var(--light-bg);
}

.related-posts {
  padding: 80px 0;
  background-color: var(--light-bg);
}

@media (max-width: 1024px) {
  .post-content .container {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .service-detail-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 20px 0;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .post-title {
    font-size: 1.8rem;
  }

  .post-meta {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}