/* Global Styles */
:root {
  --primary-color: #2c65a0;
  --primary-light: #3983cc;
  --primary-dark: #1e4a78;
  --secondary-color: #e63e35;
  --secondary-light: #ff5a50;
  --secondary-dark: #c32d25;
  --text-color: #333333;
  --text-light: #666666;
  --background-light: #f5f7fa;
  --background-white: #ffffff;
  --border-color: #e1e5eb;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-light);
  overflow-x: hidden;
}

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

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.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: white;
}

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
}

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

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

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

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

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

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

nav ul li:first-child {
  margin-left: 0;
}

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

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  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);
}

nav ul li a i {
  margin-right: 5px;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--background-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 101, 160, 0.1) 0%, rgba(44, 101, 160, 0.05) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 30px;
}

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

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

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.feature-card {
  background-color: var(--background-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.feature-card .icon i {
  font-size: 28px;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

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

/* Blog Preview Section */
.blog-preview {
  padding: 80px 0;
  background-color: var(--background-white);
}

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

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

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

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

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

.read-more {
  font-weight: 500;
  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(5px);
}

.center-btn {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--background-light);
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: var(--background-white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 30px;
  width: calc(33.333% - 20px);
  min-width: 300px;
  transition: var(--transition);
}

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

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
  position: relative;
  padding: 0 15px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 24px;
  color: var(--primary-light);
  position: absolute;
}

.testimonial-content p::before {
  left: 0;
  top: 0;
}

.testimonial-content p::after {
  right: 0;
  bottom: 0;
}

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

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

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.stars {
  color: var(--warning-color);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

/* Footer */
footer {
  background-color: var(--gray-800);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-logo p {
  opacity: 0.7;
}

.footer-links, .footer-contact, .footer-social {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

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

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: var(--gray-300);
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--secondary-color);
}

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

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

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

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

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

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

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

.cookie-content h4 {
  margin-bottom: 10px;
}

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

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

.cookie-buttons .btn {
  padding: 8px 16px;
  font-size: 14px;
}

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

.accept-btn:hover {
  background-color: #218838;
}

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

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

.reject-btn {
  background-color: var(--gray-400);
  color: var(--gray-800);
}

.reject-btn:hover {
  background-color: var(--gray-500);
}

.cookie-more {
  font-size: 14px;
  text-decoration: underline;
}

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

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Blog Page */
.blog-main {
  padding: 60px 0;
}

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

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

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

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

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 25px;
}

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

.post-meta span {
  display: flex;
  align-items: center;
}

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

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

.post-content p {
  margin-bottom: 20px;
}

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

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

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

.post-featured-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.post-overview {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.post-overview h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.post-overview ul {
  margin-bottom: 0;
}

.post-overview li {
  margin-bottom: 8px;
}

.post-overview li:last-child {
  margin-bottom: 0;
}

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

.post-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.post-content h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-content ul, .post-content ol {
  margin-bottom: 25px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content strong {
  color: var(--primary-dark);
}

.user-quotes {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.user-quotes h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.quote {
  background-color: var(--background-white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote:last-child {
  margin-bottom: 0;
}

.quote p {
  font-style: italic;
  position: relative;
  padding: 0 15px;
  margin-bottom: 10px;
}

.quote p::before {
  content: '"';
  font-size: 24px;
  color: var(--primary-light);
  position: absolute;
  left: 0;
  top: 0;
}

.quote p::after {
  content: '"';
  font-size: 24px;
  color: var(--primary-light);
  position: absolute;
  right: 0;
  bottom: 0;
}

.quote cite {
  display: block;
  text-align: right;
  font-weight: 500;
  color: var(--primary-dark);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.prev-post, .next-post {
  max-width: 45%;
}

.prev-post a, .next-post a {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.prev-post i {
  margin-right: 8px;
}

.next-post i {
  margin-left: 8px;
}

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

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

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

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

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

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

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

.related-post-card .btn {
  margin: 0 20px 20px;
}

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

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

.contact-info {
  background-color: var(--background-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

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

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

.info-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-item a {
  color: var(--text-color);
}

.info-item a:hover {
  color: var(--primary-color);
}

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

.social-contact h3 {
  margin-bottom: 15px;
}

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

.contact-form-container h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.contact-form-container p {
  margin-bottom: 25px;
  color: var(--text-light);
}

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

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

.form-group.checkbox-group {
  display: flex;
  align-items: flex-start;
  grid-column: span 2;
}

.form-group:nth-child(4), .form-group:nth-child(5) {
  grid-column: span 2;
}

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

.form-group.checkbox-group label {
  margin-left: 10px;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(44, 101, 160, 0.2);
}

.form-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-actions {
  grid-column: span 2;
  margin-top: 10px;
}

.map-section {
  padding: 60px 0;
}

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

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

.faq-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.faq-item {
  background-color: var(--background-white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
}

.faq-toggle {
  margin-left: 15px;
}

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

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

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

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

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--background-white);
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-600);
}

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

.thank-you-message i {
  font-size: 60px;
  color: var(--success-color);
  margin-bottom: 20px;
}

.thank-you-message h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.thank-you-message p {
  margin-bottom: 25px;
}

/* Policy Pages */
.policy-content {
  padding: 60px 0;
}

.toc {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.toc h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.toc ul {
  list-style: none;
  padding-left: 0;
}

.toc ul li {
  margin-bottom: 8px;
}

.toc ul li a {
  display: inline-block;
  padding: 5px 0;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-300);
}

.policy-section h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
  margin-bottom: 25px;
}

.policy-section li {
  margin-bottom: 10px;
}

.contact-info-box {
  background-color: var(--background-light);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.refund-steps {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
}

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

.refund-steps ol {
  padding-left: 20px;
}

.refund-steps li {
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .testimonial {
    width: calc(50% - 15px);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image {
    justify-content: center;
  }
  
  .feature-card {
    text-align: center;
  }
  
  .feature-card .icon {
    margin: 0 auto 20px;
  }
  
  .testimonial {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo, .footer-links, .footer-contact, .footer-social {
    margin-right: 0;
    width: 100%;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .prev-post, .next-post {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  nav ul {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .blog-posts-grid, .blog-grid, .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group:nth-child(4), .form-group:nth-child(5), .form-group.checkbox-group, .form-actions {
    grid-column: span 1;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-white);
  z-index: 1000;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu-close {
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin-bottom: 15px;
}

.mobile-menu ul li a {
  display: block;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
  border-bottom: 1px solid var(--gray-200);
}

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