/* Base Styles */
:root {
  --primary-color: #1e88e5;
  --primary-dark: #1565c0;
  --primary-light: #64b5f6;
  --secondary-color: #ffb300;
  --secondary-dark: #fb8c00;
  --text-color: #333333;
  --text-light: #757575;
  --bg-color: #ffffff;
  --bg-light: #f5f7fa;
  --bg-dark: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --border-radius: 6px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --header-height: 80px;
}

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

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(--bg-color);
}

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

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);
}

ul {
  list-style: none;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

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

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

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

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

nav ul li a:hover {
  color: var(--primary-color);
}

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

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

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

.font-size-toggle {
  display: flex;
  align-items: center;
}

#increase-font {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: var(--transition);
}

#increase-font:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

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

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-image {
  flex: 0 0 45%;
}

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

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

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

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

.feature-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

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

/* Recent Posts Section */
.recent-posts {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

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

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

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(3px);
}

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

/* Subscription Section */
.subscription {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
}

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

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

.subscription p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.form-group {
  display: flex;
  margin-bottom: 1.5rem;
}

.form-group input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.form-group button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 25px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  font-weight: 600;
}

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

.subscriber-count {
  font-size: 1rem;
  opacity: 0.9;
}

#subscriber-number {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: white;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
  margin-right: 10px;
  color: var(--primary-light);
  margin-top: 5px;
}

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

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

.social-icons {
  display: flex;
}

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

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-content a {
  color: var(--primary-light);
  font-size: 0.9rem;
}

.cookie-content a:hover {
  text-decoration: underline;
}

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

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

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Page Styles */
.blog-section {
  padding: 80px 0;
}

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

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

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

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

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

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

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 5px;
}

.blog-content h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-content .read-more {
  margin-top: auto;
}

/* Services Page Styles */
.services-intro {
  padding: 80px 0;
}

.services-intro-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.services-text {
  flex: 1;
}

.services-image {
  flex: 1;
}

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

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

.service-categories h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.service-category {
  display: flex;
  margin-bottom: 40px;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.service-icon {
  flex: 0 0 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.service-details {
  flex: 1;
}

.service-details h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 1rem;
}

.service-list li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.service-highlight {
  font-weight: 600;
  color: var(--text-color);
}

.faq-section {
  padding: 80px 0;
}

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

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

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--bg-dark);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-toggle i {
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

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

.cta-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
}

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

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

.cta-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

/* About Page Styles */
.about-intro {
  padding: 80px 0;
}

.about-intro-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.about-text {
  flex: 1;
}

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

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

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

.mission-box, .vision-box, .values-box {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

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

.icon-circle i {
  font-size: 1.8rem;
  color: white;
}

.values-box ul {
  text-align: left;
  list-style: none;
  margin-top: 1.5rem;
}

.values-box ul li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.values-box ul li strong {
  color: var(--text-color);
}

.team-section {
  padding: 80px 0;
}

.team-section h2, .section-subtitle {
  text-align: center;
}

.section-subtitle {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

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

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

.member-image {
  height: 300px;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 25px;
}

.member-info h3 {
  margin-bottom: 5px;
}

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

.member-bio {
  color: var(--text-light);
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  gap: 10px;
}

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

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

.what-we-do {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.what-we-do h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-box {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-box h3 {
  margin-bottom: 1rem;
}

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

.disclaimer {
  padding: 40px 0;
}

.disclaimer-box {
  background-color: #fff9c4;
  border-left: 4px solid var(--warning-color);
  padding: 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.disclaimer-box h3 {
  display: flex;
  align-items: center;
  color: var(--warning-color);
  margin-bottom: 0.8rem;
}

.disclaimer-box h3 i {
  margin-right: 10px;
}

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

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

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

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

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

.info-item {
  display: flex;
  margin-bottom: 30px;
}

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

.info-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

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

.social-contact {
  margin-top: 30px;
}

.social-contact h3 {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-color);
  transition: var(--transition);
}

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

.disclaimer-note {
  margin-top: 30px;
  padding: 15px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
}

.disclaimer-note p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

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

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

.contact-form .form-group {
  margin-bottom: 20px;
  display: block;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--bg-dark);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex !important;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 0.9rem;
  color: var(--text-light);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

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

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

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

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

.faq-contact {
  padding: 80px 0;
}

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

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

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

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

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

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

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

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

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

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

.close-btn {
  padding: 12px 30px;
}

/* Blog Post Styles */
.blog-post {
  padding: 80px 0;
}

.post-header {
  margin-bottom: 40px;
}

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

.post-meta {
  display: flex;
  margin-bottom: 25px;
  color: var(--text-light);
}

.post-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.post-meta i {
  margin-right: 5px;
}

.featured-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.post-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

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

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

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

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

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

.info-box {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 25px;
  margin: 2rem 0;
}

.info-box h3, .info-box h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.info-box ul {
  margin-bottom: 0;
}

.tip {
  background-color: #e1f5fe;
  border-left: 4px solid var(--primary-light);
  padding: 20px;
  margin: 2rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tip h4 {
  color: var(--primary-color);
  margin-top: 0;
}

.tip p {
  margin-bottom: 0;
}

.image-with-caption {
  margin: 2rem 0;
}

.image-with-caption img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
}

.caption {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 10px;
}

.step-by-step {
  margin: 2rem 0;
}

.step-by-step h3 {
  margin-bottom: 1.5rem;
}

.comparison-table {
  margin: 2rem 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--bg-dark);
}

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

.comparison-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

.cta-box {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h3 {
  margin-bottom: 1rem;
}

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

.post-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--bg-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tags span {
  margin-right: 10px;
  color: var(--text-light);
}

.tags a {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--bg-light);
  border-radius: 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

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

.share-post span {
  margin-right: 10px;
  color: var(--text-light);
}

.social-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-color);
  margin-left: 5px;
  transition: var(--transition);
}

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  border-top: 1px solid var(--bg-dark);
  padding-top: 30px;
}

.nav-previous, .nav-next {
  max-width: 45%;
}

.nav-previous a, .nav-next a {
  display: flex;
  flex-direction: column;
}

.nav-subtitle {
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.nav-previous .nav-subtitle i {
  margin-right: 5px;
}

.nav-next .nav-subtitle i {
  margin-left: 5px;
}

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

.nav-previous a:hover .nav-title, .nav-next a:hover .nav-title {
  color: var(--primary-color);
}

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

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

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

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

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.related-post h3 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.related-post .read-more {
  padding: 0 20px 20px;
  display: inline-block;
}

.faq-section {
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.tips-section {
  margin: 2rem 0;
}

.tip-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
}

.tip-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.tip-item h3 i {
  margin-right: 10px;
}

.tip-item p {
  margin-bottom: 0;
}

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

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

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

.card-type h3 {
  padding: 15px;
  margin-bottom: 0;
  color: white;
  text-align: center;
}

.silver h3 {
  background-color: #9e9e9e;
}

.gold h3 {
  background-color: #ffc107;
}

.blue h3 {
  background-color: #2196f3;
}

.red h3 {
  background-color: #f44336;
}

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

.card-details {
  padding: 20px;
}

.card-details p {
  margin-bottom: 0.8rem;
}

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

.scenario-boxes {
  margin: 2rem 0;
}

.scenario {
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.scenario h4 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.scenario p {
  margin-bottom: 0.8rem;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .post-header h1 {
    font-size: 2.2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .services-intro-content,
  .about-intro-content {
    flex-direction: column;
  }
  
  .services-image,
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .service-category {
    flex-direction: column;
  }
  
  .service-icon {
    margin-bottom: 20px;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom p {
    margin-bottom: 15px;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  header {
    height: auto;
    padding: 15px 0;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px 10px;
  }
  
  .font-size-toggle {
    position: absolute;
    top: 15px;
    right: 20px;
  }
  
  .post-navigation {
    flex-direction: column;
  }
  
  .nav-previous, .nav-next {
    max-width: 100%;
  }
  
  .nav-previous {
    margin-bottom: 20px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Font Size Toggle Effect */
.font-size-increased body {
  font-size: 18px;
}

.font-size-increased h1 {
  font-size: 2.8rem;
}

.font-size-increased h2 {
  font-size: 2.3rem;
}

.font-size-increased h3 {
  font-size: 1.8rem;
}

.font-size-increased .post-content p,
.font-size-increased .post-content li {
  font-size: 1.2rem;
}
