/* Base Styles */
:root {
  --primary-color: #5e35b1;
  --primary-light: #9162e4;
  --primary-dark: #280680;
  --secondary-color: #ff6f00;
  --secondary-light: #ffa040;
  --secondary-dark: #c43e00;
  --text-color: #333333;
  --text-light: #757575;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #9e9e9e;
  --black: #212121;
  --success: #4caf50;
  --error: #f44336;
  --warning: #ff9800;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --max-width: 1200px;
  --header-height: 80px;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin: 0 0 2rem;
  line-height: 1.2;
  color: var(--black);
  font-weight: 700;
}

h1 {
  font-size: 4.8rem;
  margin-bottom: 3rem;
}

h2 {
  font-size: 3.6rem;
  margin-bottom: 2.5rem;
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

h4 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 2rem;
}

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

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

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

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

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

section {
  padding: 8rem 0;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn:active {
  transform: translateY(-1px);
}

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

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

.center {
  text-align: center;
}

/* Neon Button */
.neon-btn {
  position: relative;
  background-color: var(--secondary-color);
  overflow: hidden;
  z-index: 1;
}

.neon-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  z-index: -1;
  transition: 0.5s;
}

.neon-btn:hover:before {
  left: 100%;
}

.neon-btn:hover {
  background-color: var(--secondary-dark);
  box-shadow: 0 0 15px var(--secondary-light);
}

/* Font Size Control */
.font-size-control button {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.8rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.font-size-control button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

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

.logo img {
  height: 5rem;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
}

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

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  margin-top: var(--header-height);
}

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

.hero-content h1 {
  color: var(--white);
  font-size: 5.6rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Features Section */
.features {
  background-color: var(--light-gray);
}

.features h2 {
  text-align: center;
  margin-bottom: 6rem;
}

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

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

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

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

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

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

/* Products Section */
.products h2 {
  text-align: center;
  margin-bottom: 6rem;
}

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

.product-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.product-info {
  padding: 2.5rem;
  background-color: var(--white);
}

.product-info h3 {
  margin-bottom: 1rem;
}

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

/* Testimonials Section */
.testimonials {
  background-color: var(--light-gray);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 6rem;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.testimonial {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 350px;
  flex: 1 1 300px;
}

.quote {
  position: relative;
  margin-bottom: 2rem;
}

.quote .fa-quote-left {
  color: var(--primary-light);
  font-size: 2.4rem;
  position: absolute;
  top: -10px;
  left: -10px;
}

.quote .fa-quote-right {
  color: var(--primary-light);
  font-size: 2.4rem;
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.quote p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

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

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

/* Blog Preview Section */
.blog-preview h2 {
  text-align: center;
  margin-bottom: 6rem;
}

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

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

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

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

.blog-info {
  padding: 2.5rem;
}

.blog-info h3 {
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

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

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

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

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

.read-more:hover:after {
  transform: translateX(5px);
}

/* Footer Styles */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 8rem 0 2rem;
}

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

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

.footer-logo p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: var(--white);
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

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

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

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.footer-contact i {
  color: var(--primary-light);
  font-size: 1.8rem;
  width: 2rem;
}

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

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

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

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

.footer-bottom p {
  margin-bottom: 0;
}

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

.footer-bottom-links a {
  color: var(--medium-gray);
}

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

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/7.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 15rem 0 8rem;
  margin-top: var(--header-height);
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-banner p {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

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

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

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

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

.value-card:hover {
  transform: translateY(-10px);
}

.value-card .icon {
  width: 7rem;
  height: 7rem;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
}

.mission-values {
  background-color: var(--light-gray);
  text-align: center;
}

.process-timeline {
  max-width: 800px;
  margin: 5rem auto 0;
}

.process-step {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:not(:last-child):after {
  content: '';
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: -25px;
  width: 2px;
  background-color: var(--primary-light);
}

.step-number {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  text-align: left;
}

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

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

.team {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

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

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

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  margin: 2rem 0 0.5rem;
  padding: 0 2rem;
}

.team-member .position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
}

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

/* Services Page Styles */
.service-overview {
  text-align: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 5rem;
  font-size: 1.8rem;
}

.service-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
}

.service-process .process-step {
  flex-direction: column;
  text-align: center;
  width: 200px;
  margin-bottom: 0;
}

.service-process .step-icon {
  width: 8rem;
  height: 8rem;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
}

.service-process .step-content {
  text-align: center;
}

.service-process .process-step:not(:last-child):after {
  display: none;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.service-grid.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

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

.service-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

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

.service-content h3 {
  margin: 3rem 0 1.5rem;
  color: var(--primary-color);
}

.service-content ul {
  margin-bottom: 3rem;
}

.service-content li {
  margin-bottom: 1rem;
}

.service-detail {
  padding: 10rem 0;
}

.service-detail.alt-bg {
  background-color: var(--light-gray);
}

.corporate-services {
  background-color: var(--light-gray);
  text-align: center;
}

.corporate-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin: 5rem 0;
}

.corporate-features .feature {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.corporate-features .feature:hover {
  transform: translateY(-10px);
}

.corporate-features .icon {
  width: 7rem;
  height: 7rem;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
}

.cta-box {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-box p {
  margin-bottom: 3rem;
}

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

.cta-box .btn:hover {
  background-color: var(--light-gray);
}

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

.faq h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.accordion-item {
  margin-bottom: 2rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: var(--light-gray);
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.accordion-icon {
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition);
}

.accordion-content {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 2rem 2rem;
  max-height: 500px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  padding: 10rem 0;
}

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

.cta p {
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.8rem;
}

/* Blog Page Styles */
.blog-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
}

.blog-grid-main {
  display: grid;
  gap: 4rem;
}

.blog-grid-main .blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.blog-grid-main .blog-image {
  height: 100%;
}

.blog-grid-main .blog-image img {
  height: 100%;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.4rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.sidebar-widget {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.sidebar-widget h3 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--medium-gray);
}

.sidebar-widget.categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget.categories li {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--light-gray);
}

.sidebar-widget.categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
}

.sidebar-widget.categories a:hover {
  color: var(--primary-color);
}

.sidebar-widget.categories a:after {
  content: '→';
  transition: var(--transition);
}

.sidebar-widget.categories a:hover:after {
  transform: translateX(5px);
}

.popular-posts .popular-post {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.popular-posts img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.popular-posts h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.popular-posts h4 a {
  color: var(--text-color);
}

.popular-posts h4 a:hover {
  color: var(--primary-color);
}

.popular-posts .date {
  color: var(--text-light);
  font-size: 1.3rem;
}

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

.newsletter-form input {
  padding: 1.2rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
}

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

.tag-cloud a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--light-gray);
  color: var(--text-color);
  border-radius: 30px;
  font-size: 1.4rem;
  transition: var(--transition);
}

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

/* Blog Single Post Styles */
.blog-single {
  margin-top: var(--header-height);
  padding: 8rem 0;
}

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

.blog-featured-image {
  max-width: 1000px;
  margin: 0 auto 5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-content {
  font-size: 1.8rem;
}

.blog-content h2 {
  margin-top: 4rem;
}

.blog-content h3 {
  margin-top: 3rem;
  color: var(--primary-color);
}

.blog-content ul {
  margin-bottom: 3rem;
}

.blog-content li {
  margin-bottom: 1rem;
}

.blog-image-content {
  margin: 4rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-image-content img {
  width: 100%;
}

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

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 5rem 0 3rem;
  align-items: center;
}

.blog-tags span {
  font-weight: 600;
}

.blog-tags a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--light-gray);
  color: var(--text-color);
  border-radius: 30px;
  font-size: 1.4rem;
  transition: var(--transition);
}

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

.blog-share {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.blog-share span {
  font-weight: 600;
}

.blog-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--light-gray);
  color: var(--text-color);
  border-radius: 50%;
  transition: var(--transition);
}

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

.blog-author {
  display: flex;
  gap: 2.5rem;
  background-color: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 5rem;
}

.blog-author img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
}

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

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

.blog-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 5rem;
  border-top: 1px solid var(--medium-gray);
  padding-top: 3rem;
}

.prev-post a, .next-post a {
  display: block;
  color: var(--text-color);
}

.prev-post span, .next-post span {
  display: block;
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.prev-post h4, .next-post h4 {
  margin-bottom: 0;
  transition: var(--transition);
}

.prev-post a:hover h4, .next-post a:hover h4 {
  color: var(--primary-color);
}

.next-post {
  text-align: right;
}

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

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

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

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

.related-card:hover {
  transform: translateY(-10px);
}

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

.related-card h3 {
  padding: 2rem 2rem 1rem;
  font-size: 1.8rem;
  transition: var(--transition);
}

.related-card a:hover h3 {
  color: var(--primary-color);
}

.related-card .date {
  padding: 0 2rem 2rem;
  display: block;
  color: var(--text-light);
  font-size: 1.4rem;
}

.sidebar-widget.cta-widget {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.sidebar-widget.cta-widget h3 {
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

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

.sidebar-widget.cta-widget .btn:hover {
  background-color: var(--light-gray);
}

.sidebar-widget.recent-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget.recent-posts li {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

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

.sidebar-widget.recent-posts a {
  color: var(--text-color);
  font-weight: 500;
}

.sidebar-widget.recent-posts a:hover {
  color: var(--primary-color);
}

/* Contact Page Styles */
.contact-info {
  padding-bottom: 4rem;
}

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

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

.info-card:hover {
  transform: translateY(-10px);
}

.info-card .icon {
  width: 7rem;
  height: 7rem;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
}

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

.info-card p {
  margin-bottom: 1rem;
}

.info-card .hours {
  color: var(--text-light);
  font-size: 1.4rem;
}

.info-card .social-icons {
  justify-content: center;
  margin-top: 1.5rem;
}

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

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

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

.form-container > p {
  margin-bottom: 3rem;
}

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

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

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

.contact-form label {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 1.2rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-family: var(--font-main);
}

.contact-form textarea {
  resize: vertical;
}

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

.checkbox-group input {
  margin-top: 0.5rem;
}

.map-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

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

.business-hours {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

.business-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--light-gray);
}

.business-hours li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.business-hours span {
  font-weight: 600;
}

.contact-faq {
  margin-top: 8rem;
}

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

.modal-content {
  background-color: var(--white);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 90%;
  position: relative;
}

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

.close-modal:hover {
  color: var(--text-color);
}

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

.thank-you-message i {
  font-size: 6rem;
  color: var(--success);
  margin-bottom: 2rem;
}

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

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

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

.close-btn:hover {
  background-color: darken(var(--success), 10%);
}

/* Policy Pages Styles */
.policy-content {
  padding: 8rem 0;
}

.policy-intro {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.policy-section {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  color: var(--primary-color);
  margin-bottom: 2.5rem;
}

.policy-section h3 {
  margin: 3rem 0 1.5rem;
}

.policy-section ul,
.policy-section ol {
  margin-bottom: 2.5rem;
}

.policy-section li {
  margin-bottom: 1rem;
}

.contact-details {
  background-color: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin: 2.5rem 0;
}

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

.contact-details p:last-child {
  margin-bottom: 0;
}

.refund-steps {
  background-color: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin: 2.5rem 0;
}

.refund-steps h3 {
  margin-top: 0;
}

.refund-steps ol {
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.cookie-content p {
  flex: 1 1 400px;
  margin-bottom: 0;
}

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

.cookie-content a {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  html {
    font-size: 56.25%; /* 9px = 1rem */
  }
}

@media (max-width: 992px) {
  html {
    font-size: 50%; /* 8px = 1rem */
  }

  .about-grid,
  .service-grid,
  .blog-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .service-grid.reverse {
    direction: ltr;
  }

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

  .blog-sidebar {
    position: static;
    margin-top: 5rem;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

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

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

  .blog-grid-main .blog-image {
    height: 200px;
  }

  .blog-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .next-post {
    text-align: left;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  section {
    padding: 6rem 0;
  }

  .hero {
    height: auto;
    padding: 12rem 0 6rem;
  }

  .page-banner {
    padding: 12rem 0 6rem;
  }

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

  .form-container {
    padding: 3rem;
  }

  .modal-content {
    padding: 3rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 1rem;
  }
}
