/* Base Styles */
:root {
  --primary-color: #ff5722;
  --secondary-color: #2196f3;
  --dark-color: #333;
  --light-color: #f4f4f4;
  --danger-color: #dc3545;
  --success-color: #28a745;
  --max-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

/* Utility Classes */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: #e64a19;
}

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

.btn-secondary:hover {
  background-color: #1976d2;
}

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

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

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

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 50px;
}

nav .menu {
  display: flex;
}

nav .menu li {
  margin-left: 20px;
}

nav .menu a {
  font-weight: 600;
  padding: 10px 5px;
  position: relative;
}

nav .menu a:hover {
  color: var(--primary-color);
}

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

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

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

/* Hero Section */
.hero, .faq-hero, .blog-hero {
  background: #fff;
  color: #333;
  padding: 80px 0 40px;
}

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

.hero-content {
  flex: 1;
  text-align: left;
}

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

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #333;
}

.rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rating-score {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 10px;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-right: 10px;
}

.votes {
  color: #777;
  font-size: 0.9rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.qr-code-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.qr-code {
  width: 130px;
  height: 130px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.qr-code::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
  border-radius: 8px;
  pointer-events: none;
}

.qr-code img {
  width: 100%;
  height: 100%;
}

.qr-code-container p {
  font-size: 0.85rem;
  color: #fff;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.qr-code-container p::before {
  content: '\f3c1';
  font-family: 'Font Awesome 5 Free';
  margin-right: 5px;
  font-weight: 900;
}

/* Feature Icons Section */
.feature-icons {
  padding: 30px 0 60px;
  background-color: #f9f9f9;
}

.icon-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.icon-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.icon-image {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-image img {
  max-width: 100%;
  max-height: 100%;
}

.icon-item p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

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

/* Screenshots Section */
section.screenshots {
  padding: 80px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  section.screenshots {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  section.screenshots {
    padding: 40px 0;
  }
}

.screenshots-slider {
  display: flex;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 20px 0;
  width: 100%;
  position: relative;
  min-height: 500px;
  justify-content: center;
}

/* Responsive styles for screenshots slider */
@media (max-width: 768px) {
  .screenshots-slider {
    min-height: 400px;
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .screenshots-slider {
    min-height: 350px;
  }
}

.screenshots-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.screenshot {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .screenshot {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

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

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-caption {
  padding: 15px;
  text-align: center;
  background-color: #fff;
  font-weight: 600;
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .screenshot-caption {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .screenshot-caption {
    padding: 8px;
    font-size: 13px;
  }
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  gap: 15px;
}

@media (max-width: 576px) {
  .slider-controls {
    margin-top: 10px;
    gap: 10px;
  }
}

.prev-btn, .next-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

@media (max-width: 768px) {
  .prev-btn, .next-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 576px) {
  .prev-btn, .next-btn {
    width: 32px;
    height: 32px;
  }
}

.prev-btn:hover, .next-btn:hover {
  background-color: #e64a19;
}

.slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .slider-dots {
    gap: 8px;
  }
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

@media (max-width: 576px) {
  .dot {
    width: 10px;
    height: 10px;
  }
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
  border-color: var(--primary-color);
}

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

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 40px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
}

.faq-section:nth-child(odd) {
  background-color: #f9f9f9;
}

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

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

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

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

.faq-toggle {
  font-size: 1.2rem;
  color: var(--primary-color);
}

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

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

.faq-answer p, .faq-answer ul, .faq-answer ol {
  margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
  padding-left: 20px;
}

.faq-answer ul li, .faq-answer ol li {
  margin-bottom: 5px;
}

.faq-categories {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.category-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  color: var(--primary-color);
}

.category-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.category-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

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

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

.featured-post {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-post .post-image {
  height: 100%;
  position: relative;
}

.featured-post .post-image img {
  height: 100%;
  object-fit: cover;
}

.featured-post .post-content {
  padding: 30px;
}

.post-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.post-image {
  position: relative;
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.post-content {
  padding: 20px;
}

.post-content h2, .post-content h3 {
  margin-bottom: 15px;
}

.post-content h2 a, .post-content h3 a {
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.post-content h2 a:hover, .post-content h3 a:hover {
  color: var(--primary-color);
}

.post-meta {
  display: flex;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.post-date, .post-author {
  margin-right: 20px;
}

.post-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #e64a19;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 5px;
  border-radius: 5px;
  background-color: #fff;
  color: var(--dark-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pagination a.active, .pagination a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.pagination a.next {
  width: auto;
  padding: 0 20px;
}

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

.blog-post-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.blog-post-main {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

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

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

.post-featured-image {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
}

.post-content h3 {
  font-size: 1.5rem;
  margin: 25px 0 15px;
}

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

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

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

.image-with-caption {
  margin: 30px 0;
}

.caption {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 10px;
}

.tip-box {
  background-color: rgba(33, 150, 243, 0.1);
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.tip-box h3 {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

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

.cta-box {
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}

.cta-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.post-tags {
  margin: 40px 0;
}

.tags-label {
  font-weight: 600;
  margin-right: 10px;
}

.tag {
  display: inline-block;
  background-color: #f1f1f1;
  padding: 5px 15px;
  border-radius: 20px;
  margin: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.post-share {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.share-label {
  font-weight: 600;
  margin-right: 15px;
}

.social-share {
  display: flex;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f1f1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.author-box {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.author-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

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

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

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

.related-post {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
}

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

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

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

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.search-form {
  display: flex;
}

.search-form input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.search-form button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.categories-widget ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.categories-widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.categories-widget ul li a {
  display: flex;
  justify-content: space-between;
  transition: color 0.3s ease;
}

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

.popular-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-image {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
}

.popular-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post-content h4 {
  font-size: 1rem;
  margin: 0 0 5px;
}

.popular-post-content .post-date {
  font-size: 12px;
  color: #666;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
}

.cta-widget {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 40px 25px;
}

.cta-widget h3 {
  border-bottom: none;
}

.cta-widget .btn {
  margin-top: 20px;
}

/* Download Page Styles */
.download-hero {
  background-color: var(--primary-color);
  padding: 80px 0;
  color: #fff;
}

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

.download-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.download-hero .rating {
  color: #fff;
}

.download-hero .stars i {
  color: #ffeb3b;
}

.version-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.version-details {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
}

.version-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.version-label i {
  color: #ffeb3b;
}

.version-number,
.version-date,
.version-size {
  font-size: 1.2rem;
  font-weight: 600;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.download-hero .qr-code-container {
  margin-top: 30px;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-color);
  color: #fff;
  padding: 80px 0;
}

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

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

.newsletter-content p {
  margin-bottom: 30px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.newsletter-form .btn {
  border-radius: 0 5px 5px 0;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  padding-right: 40px;
}

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

.contact-method {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.contact-form {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 80px 0 0;
}

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

.footer-logo {
  max-width: 300px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-white-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-links {
  display: flex;
}

.footer-links-column {
  margin-left: 60px;
}

.footer-links-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

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

.footer-links-column ul li a {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #e64a19;
}

/* SEO Content Section Styles */
.seo-content {
  padding: 80px 0;
  background-color: #fff;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.seo-content-item h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.seo-content-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.seo-content-item p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
  font-size: 1rem;
}

.feature-list {
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.faq-section {
  margin-top: 60px;
}

.faq-section h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-color);
}

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

.faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  padding-left: 30px;
}

.faq-item h4::before {
  content: '\f059';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

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

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.step-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.step-content h3 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-tip {
  background-color: rgba(255, 87, 34, 0.08);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.step-tip i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 14px;
}

.supported-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.supported-sites span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
}

.supported-sites span i {
  margin-right: 3px;
  font-size: 14px;
}

.quality-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.quality-options span {
  display: inline-block;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-content h1, .faq-hero-content h1, .blog-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p, .faq-hero-content p, .blog-hero-content p {
    font-size: 1.2rem;
  }
  
  .features-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post-container {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    margin-top: 40px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .testimonials-slider {
    height: 300px;
  }
  
  .screenshots-slider {
    padding: 15px 0;
  }
  
  .screenshot {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav .menu {
    display: none;
  }
  
  nav .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  nav .menu.active li {
    margin: 10px 0;
  }
  
  .features-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    margin-top: 30px;
  }
  
  .footer-links-column {
    margin-left: 0;
    margin-bottom: 20px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 100;
  }
  
  .menu.active {
    display: block;
  }
  
  .menu li {
    display: block;
    margin: 15px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-image {
    display: none;
  }
  
  .hero .rating {
    margin-bottom: 15px;
  }
  
  .hero .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero .cta-buttons .btn {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }
  
  .how-it-works-steps {
    flex-direction: column;
  }
  
  .step {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial {
    padding: 20px;
  }
  
  .footer-links, .footer-social {
    margin-top: 30px;
  }
  
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .screenshot {
    width: 180px;
  }
  
  .slider-controls {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .hero-content h1, .faq-hero-content h1, .blog-hero-content h1 {
    font-size: 2rem;
  }
  
  .seo-content-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .seo-content-item h3 {
    font-size: 1.4rem;
  }
  
  .faq-section h3 {
    font-size: 1.6rem;
  }
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 10px;
  }
  
  .newsletter-form .btn {
    border-radius: 5px;
  }

/* QR Code Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
}

.modal-qr-code img {
  max-width: 250px;
  margin: 0 auto 20px;
  display: block;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 4px;
}

.modal-qr-code p {
  margin-top: 15px;
  color: #666;
  font-size: 16px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}

.close-button:hover {
  color: #333;
}

/* Clickable QR Code Styles */
.qr-code.clickable {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.qr-code.clickable:hover {
  transform: scale(1.05);
}

.qr-code.clickable .qr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 4px;
}

.qr-code.clickable:hover .qr-overlay {
  opacity: 1;
}

.qr-code.clickable .qr-overlay i {
  color: white;
  font-size: 24px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

.qr-code {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Beautified Version Download Buttons */
.versions-table .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.versions-table .download-btn:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.versions-table .download-btn i {
  margin-right: 6px;
}

.versions-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.versions-table th {
  background-color: #f5f5f5;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #eee;
}

.versions-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.versions-table tr:last-child td {
  border-bottom: none;
}

.versions-table tr:hover {
  background-color: #f9f9f9;
}

/* Version Comparison Table */
.comparison-table {
    margin: 40px 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.feature-comparison-table th,
.feature-comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.feature-comparison-table thead th {
    background-color: #f8f8f8;
    font-weight: 600;
    padding: 20px 16px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid #e0e0e0;
}

.feature-comparison-table .feature-column {
    min-width: 180px;
    background-color: #f8f8f8;
}

.feature-comparison-table .version-column {
    min-width: 150px;
}

.feature-comparison-table .version-column.recommended {
    background-color: rgba(76, 175, 80, 0.05);
    border-left: 4px solid #4CAF50;
    border-right: 4px solid #4CAF50;
}

.feature-comparison-table .version-header {
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #333;
}

.feature-comparison-table .recommended-badge {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin-top: 5px;
}

.feature-comparison-table th:first-child,
.feature-comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    position: sticky;
    left: 0;
    background-color: #f8f8f8;
    z-index: 5;
    border-right: 2px solid #e0e0e0;
}

.feature-comparison-table tr:hover td {
    background-color: rgba(33, 150, 243, 0.05);
}

.feature-comparison-table .feature-name {
    font-weight: 500;
    color: #555;
}

.feature-comparison-table .highlight {
    color: #2196F3;
    font-weight: 600;
}

.feature-comparison-table .highlight-green {
    color: #4CAF50;
    font-weight: 600;
}

.feature-comparison-table .rating {
    color: #FFC107;
    letter-spacing: 2px;
}

.feature-comparison-table .text-success {
    color: #4CAF50;
    font-size: 1.2em;
}

.feature-comparison-table .text-danger {
    color: #F44336;
    font-size: 1.2em;
}

.feature-comparison-table .btn {
    margin: 0;
    padding: 8px 16px;
    font-size: 0.9em;
}

.feature-comparison-table .btn-outline {
    background-color: transparent;
    border: 1px solid #2196F3;
    color: #2196F3;
}

.feature-comparison-table .btn-outline:hover {
    background-color: #2196F3;
    color: white;
}

.feature-comparison-table .download-row td {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: none;
}

@media (max-width: 768px) {
    .feature-comparison-table .version-header {
        font-size: 0.9em;
    }
    
    .feature-comparison-table th,
    .feature-comparison-table td {
        padding: 10px 8px;
        font-size: 0.9em;
    }
    
    .feature-comparison-table .btn {
        padding: 6px 10px;
        font-size: 0.8em;
    }
}
