/* Base Styles */
:root {
  --primary-color: #6E56CF;
  --primary-light: #9E8CFC;
  --primary-dark: #4B3C99;
  --secondary-color: #16A34A;
  --secondary-light: #22C55E;
  --secondary-dark: #15803D;
  --dark-color: #1E293B;
  --light-color: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  line-height: 1.6;
  background-color: var(--light-color);
}

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, ol {
  list-style: none;
  padding: 0;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

.btn-secondary {
  background-color: var(--gray-100);
  color: var(--gray-800);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background-color: var(--gray-200);
  color: var(--gray-900);
}

/* Header */
header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
}

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

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

.mobile-menu-btn span {
  height: 3px;
  width: 100%;
  background-color: var(--gray-700);
  margin-bottom: 5px;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 30px;
}

.search-box {
  display: flex;
  margin-bottom: 30px;
}

.search-box input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.search-box button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 30px;
}

.features {
  display: flex;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
}

.feature svg {
  color: var(--primary-color);
}

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

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: white;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

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

.step-icon svg {
  color: white;
  width: 30px;
  height: 30px;
}

.step h3 {
  margin-bottom: 15px;
}

.step p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Article Overview Section */
.article-overview {
  padding: 60px 0;
  background-color: var(--gray-100);
}

.article-overview h2 {
  margin-bottom: 30px;
}

.overview-list {
  list-style: disc;
  padding-left: 20px;
}

.overview-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--gray-700);
}

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote {
  padding: 30px;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: var(--gray-300);
  font-family: serif;
  opacity: 0.5;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background-color: var(--gray-200);
}

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

.user h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Latest Blog Section */
.latest-blog {
  padding: 80px 0;
  background-color: var(--gray-100);
}

.latest-blog h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

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

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 200px;
  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: 20px;
}

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

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

.read-more {
  display: inline-block;
  font-weight: 500;
}

.view-all {
  text-align: center;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--gray-400);
}

.footer-links h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

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

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

.footer-social h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-800);
  border-radius: 50%;
  transition: var(--transition);
  color: var(--gray-300);
}

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

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

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

.btn-accept {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-customize, .btn-decline {
  background-color: var(--gray-200);
  color: var(--gray-800);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-customize:hover, .btn-decline:hover {
  background-color: var(--gray-300);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #6E56CF 0%, #4B3C99 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Content */
.blog-content {
  padding: 60px 0;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-details {
  padding: 30px;
}

.blog-details .date {
  display: block;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.blog-details h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.article-overview {
  margin: 20px 0;
}

.article-overview li {
  margin-bottom: 8px;
  color: var(--gray-700);
}

.testimonial-snippet {
  background-color: var(--gray-100);
  padding: 20px;
  border-left: 4px solid var(--primary-color);
  margin: 20px 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.testimonial-snippet p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-snippet span {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
}

/* Newsletter */
.newsletter {
  background-color: var(--primary-color);
  padding: 60px 0;
  color: white;
}

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

.newsletter-content h2 {
  color: white;
  margin-bottom: 15px;
}

.newsletter-content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

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

.newsletter-form button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 30px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

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

.post-meta {
  display: flex;
  gap: 20px;
  color: var(--gray-500);
  margin-bottom: 30px;
}

.featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.article-overview-box {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 20px 30px;
  margin-bottom: 30px;
}

.article-overview-box h3 {
  margin-bottom: 15px;
  color: var(--gray-800);
}

.article-overview-box ul {
  list-style: disc;
  padding-left: 20px;
}

.article-overview-box li {
  margin-bottom: 10px;
  color: var(--gray-700);
}

.post-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

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

.post-content ul, .post-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

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

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

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

.user-testimonials {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 40px 0;
}

.user-testimonials h3 {
  margin-bottom: 20px;
}

.user-testimonials .testimonial {
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.user-testimonials .testimonial:last-child {
  margin-bottom: 0;
}

.user-testimonials .user-name {
  display: block;
  text-align: right;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 10px;
}

.post-tags {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

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

.post-tags a {
  background-color: var(--gray-100);
  padding: 5px 12px;
  border-radius: 20px;
  color: var(--gray-700);
  font-size: 0.9rem;
}

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

.share-post {
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  margin-bottom: 30px;
}

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

.related-post {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.related-post h4 {
  padding: 15px;
  font-size: 1rem;
  margin-bottom: 0;
}

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

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

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-box {
  display: flex;
  gap: 15px;
}

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

.text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.social-connect {
  grid-column: span 2;
  margin-top: 20px;
}

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

.contact-form h2 {
  margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: auto;
}

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

.map-section {
  padding: 60px 0;
  background-color: var(--gray-100);
}

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

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

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

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

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

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

.faq-item {
  background-color: var(--gray-100);
  padding: 25px;
  border-radius: var(--border-radius);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

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

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

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.success-icon {
  color: var(--secondary-color);
  margin: 0 auto 20px;
}

.modal h2 {
  margin-bottom: 15px;
}

.modal p {
  margin-bottom: 30px;
  color: var(--gray-600);
}

/* About Page */
.about-story {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 30px;
}

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

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

.mission-section {
  padding: 80px 0;
  background-color: var(--gray-100);
}

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

.mission-content h2 {
  margin-bottom: 30px;
}

.mission-list {
  text-align: left;
  list-style: disc;
  padding-left: 20px;
  margin: 30px 0;
}

.mission-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

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

.team-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.team-member {
  text-align: center;
  transition: var(--transition);
}

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

.team-member img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

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

.team-member p {
  color: var(--gray-600);
  margin-bottom: 15px;
}

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

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

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

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

.values-section {
  padding: 80px 0;
  background-color: var(--gray-100);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

.value-card p {
  color: var(--gray-600);
  margin-bottom: 0;
}

.technology-section {
  padding: 80px 0;
  background-color: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.tech-content h2 {
  margin-bottom: 30px;
}

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

.tech-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

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

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6E56CF 0%, #4B3C99 100%);
  text-align: center;
  color: white;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container,
  .about-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 0;
  }
  
  .steps,
  .testimonial-wrapper,
  .blog-posts,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .faq-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .features {
    flex-direction: column;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .search-box {
    flex-direction: column;
  }
  
  .search-box input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .search-box button {
    border-radius: var(--border-radius);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
}
