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

html {
  height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
  min-height: 100vh;
  color: #333;
  background: linear-gradient(334deg, #6b97f7, #7525e2, #f7137e);
  background-size: 180% 180%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: gradient-animation 6s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.logo-container h1 {
  color: #4c6ef5;
  font-size: 1.8rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #495057;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: #4c6ef5;
  color: white;
}

main {
  padding: 2rem;
}

.hero {
  text-align: center;
  padding: 4rem 0;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

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

.search-box {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  outline: none;
  border-radius: 50px;
  background: transparent;
}

.search-btn {
  background: #00000000;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #00000000;
  transform: scale(0.8);
}

.filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-select {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.filter-select:hover,
.filter-select:focus {
  background: white;
  border-color: #4c6ef5;
}

.tools-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #4c6ef5;
}

.tool-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tool-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.tool-info {
  flex: 1;
}

.tool-info h3 {
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.tool-category,
.tool-pricing {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 0.5rem;
}

.tool-category {
  background: #e9ecef;
  color: #495057;
}

.tool-pricing.free {
  background: #d4edda;
  color: #155724;
}

.tool-pricing.freemium {
  background: #fff3cd;
  color: #856404;
}

.tool-pricing.paid {
  background: #f8d7da;
  color: #721c24;
}

.tool-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pros, .cons {
  font-size: 0.9rem;
}

.pros h4 {
  color: #28a745;
  margin-bottom: 0.5rem;
}

.cons h4 {
  color: #dc3545;
  margin-bottom: 0.5rem;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  margin-bottom: 0.3rem;
  padding-left: 1rem;
  position: relative;
}

.pros li::before {
  content: "\2713";
  color: #28a745;
  position: absolute;
  left: 0;
}

.cons li::before {
  content: "\2717";
  color: #dc3545;
  position: absolute;
  left: 0;
}

.visit-btn {
  background: #4c6ef5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.visit-btn:hover {
  background: #364fc7;
  transform: translateY(-2px);
}

.no-results {
  text-align: center;
  color: #6c757d;
  font-size: 1.2rem;
  padding: 3rem;
  grid-column: 1 / -1;
}

.newsletter {
  background: linear-gradient(135deg, #4c6ef5 0%, #364fc7 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  color: white;
  text-align: center;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.email-input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
}

.subscribe-btn {
  background: white;
  color: #4c6ef5;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.newsletter-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature-icon {
  font-size: 1.2rem;
}

.page-header {
  text-align: center;
  padding: 2rem 0;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.page-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #495057;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #4c6ef5;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-btn {
  background: #4c6ef5;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn:hover {
  background: #364fc7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 110, 245, 0.4);
}

@media (max-width: 768px) {
  .logo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero h2 {
    font-size: 2rem;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-features {
    flex-direction: column;
    gap: 1rem;
  }

  .search-box {
    flex-direction: column;
    gap: 0.5rem;
  }

  .filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-select {
    width: 200px;
  }
}


/* Additional SEO and UX Styles */

/* Breadcrumb Navigation */
.breadcrumb {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 2rem;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 0.5rem;
  color: #6c757d;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: #4c6ef5;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Container for consistent spacing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Category Description */
.category-description {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.category-description h2 {
  color: #495057;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.category-description h3 {
  color: #495057;
  margin: 1.5rem 0 1rem 0;
  font-size: 1.2rem;
}

.category-description ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.category-description li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Featured Categories */
.featured-categories {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-categories h2 {
  text-align: center;
  color: #495057;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #4c6ef5;
  text-decoration: none;
  color: inherit;
}

.category-card h3 {
  color: #495057;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.category-card p {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tool-count {
  display: inline-block;
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Tool Features */
.tool-features {
  margin: 1rem 0;
}

.tool-features h4 {
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.tool-features ul {
  list-style: none;
  padding: 0;
}

.tool-features li {
  margin-bottom: 0.3rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.9rem;
  color: #6c757d;
}

.tool-features li::before {
  content: "✓";
  color: #28a745;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Tool Pricing Info */
.tool-pricing-info {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.tool-pricing-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #495057;
}

/* Related Categories */
.related-categories {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-categories h2 {
  text-align: center;
  color: #495057;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* FAQ Section */
.faq-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
  text-align: center;
  color: #495057;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: #495057;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Filter Section */
.filter-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.filter-section h2 {
  color: #495057;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 1rem;
  text-align: center;
  color: #adb5bd;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .breadcrumb {
    padding: 0.5rem 1rem;
  }
  
  .category-description {
    padding: 1.5rem;
  }
  
  .featured-categories,
  .related-categories,
  .faq-section {
    padding: 2rem 1rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* Blog Styles */

/* Featured Post */
.featured-post {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-post h2 {
  text-align: center;
  color: #495057;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.article-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.article-content h3 {
  margin: 1rem 0;
  font-size: 1.8rem;
}

.article-content h3 a {
  color: #495057;
  text-decoration: none;
}

.article-content h3 a:hover {
  color: #4c6ef5;
}

.article-content p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Article Meta */
.article-meta, .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.category {
  background: #4c6ef5;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: 500;
}

.date, .read-time {
  color: #6c757d;
}

.read-more {
  color: #4c6ef5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #364fc7;
}

/* Blog Filters */
.blog-filters {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.blog-filters h2 {
  text-align: center;
  color: #495057;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.filter-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tag {
  background: #e9ecef;
  color: #495057;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-tag:hover,
.filter-tag.active {
  background: #4c6ef5;
  color: white;
  transform: translateY(-2px);
}

/* Blog Posts Grid */
.blog-posts {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-posts h2 {
  text-align: center;
  color: #495057;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #4c6ef5;
}

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

.post-content {
  padding: 1.5rem;
}

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

.post-content h3 a {
  color: #495057;
  text-decoration: none;
}

.post-content h3 a:hover {
  color: #4c6ef5;
}

.post-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
  
  .article-image {
    order: -1;
  }
  
  .filter-tags {
    justify-content: center;
  }
  
  .filter-tag {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-post,
  .blog-filters,
  .blog-posts {
    padding: 2rem 1rem;
  }
  
  .article-meta,
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* Blog Article Styles */

.blog-article {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.article-header {
  padding: 3rem 3rem 2rem;
  text-align: center;
}

.article-header h1 {
  font-size: 2.5rem;
  color: #495057;
  margin: 1rem 0;
  line-height: 1.2;
}

.article-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 1.5rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-image {
  margin: 2rem 0;
}

.article-image img {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-content {
  padding: 0 3rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  color: #495057;
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.article-content h3 {
  color: #495057;
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.article-content p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #495057;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.article-content strong {
  color: #343a40;
  font-weight: 600;
}

/* Related Articles */
.related-articles {
  background: #f8f9fa;
  padding: 2rem 3rem;
  margin-top: 2rem;
}

.related-articles h2 {
  text-align: center;
  color: #495057;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

.related-article {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.related-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-color: #4c6ef5;
  text-decoration: none;
  color: inherit;
}

.related-article h3 {
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.related-article p {
  color: #6c757d;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Article Responsive */
@media (max-width: 768px) {
  .article-header {
    padding: 2rem 1.5rem 1rem;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
  
  .article-subtitle {
    font-size: 1.1rem;
  }
  
  .article-content {
    padding: 0 1.5rem 2rem;
  }
  
  .article-content h2 {
    font-size: 1.5rem;
  }
  
  .article-content h3 {
    font-size: 1.2rem;
  }
  
  .article-content p {
    font-size: 1rem;
  }
  
  .related-articles {
    padding: 2rem 1.5rem;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
}


/* Improved Category Cards */
.category-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #4c6ef5;
  text-decoration: none;
  color: inherit;
}

.category-card:hover .category-arrow {
  transform: translateX(5px);
  color: #4c6ef5;
}

.category-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 8px;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.category-content {
  flex: 1;
}

.category-content h3 {
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.category-content p {
  color: #6c757d;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-size: 0.9rem;
}

.category-arrow {
  font-size: 1.5rem;
  color: #adb5bd;
  transition: all 0.3s ease;
  font-weight: bold;
}

.tool-count {
  display: inline-block;
  background: linear-gradient(135deg, #4c6ef5, #7c3aed);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for category cards */
@media (max-width: 768px) {
  .category-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
  }
  
  .category-arrow {
    display: none;
  }
}

