:root {
  --primary: #0f766e;
  --secondary: #6ee7b7;
  --accent: #f59e0b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  --radius: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.logo i {
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: white;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 60px 20px;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.why-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== APPS SECTION ===== */
.apps-section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0 0 12px;
  font-family: 'Sora', system-ui, sans-serif;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.app-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.app-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}

.app-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.app-card h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-family: 'Sora', system-ui, sans-serif;
}

.app-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 16px;
}

.app-card > p {
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.vibe-box {
  background: rgba(15, 118, 110, 0.05);
  border-left: 3px solid var(--primary);
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.win-reason {
  color: var(--text);
  margin: 16px 0;
  font-weight: 500;
}

.app-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.app-link:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

/* ===== TIPS SECTION ===== */
.tips-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.tip {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease;
}

.tip:hover {
  transform: translateY(-8px);
}

.tip-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.tip h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.tip p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
}

.cta-box {
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin: 0 0 16px;
  font-family: 'Sora', system-ui, sans-serif;
}

.cta-box p {
  font-size: 1.1rem;
  margin: 0 0 32px;
  opacity: 0.95;
}

.cta-box .btn-primary {
  background: white;
  color: #0f766e;
}

.cta-box .btn-primary:hover {
  background: #f0fdf4;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 20px;
}

.about-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--border);
  padding: 48px 40px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.about-avatar {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.8rem;
  margin: 0 0 16px;
  font-family: 'Sora', system-ui, sans-serif;
}

.about-card p {
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.about-card p:last-of-type {
  margin-bottom: 24px;
}

.about-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.about-social a {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-social a:hover {
  background: var(--secondary);
  transform: translateY(-4px);
}

/* ===== ARTICLE PAGES ===== */
.article {
  min-height: 100vh;
}

.article-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
  padding: 60px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.article-header h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin: 0 0 16px;
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.3;
  color: var(--text);
}

.article-excerpt {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin: 60px 0;
}

.article-main {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.article-main h2 {
  font-size: 1.6rem;
  margin: 40px 0 20px;
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--text);
}

.article-main h3 {
  font-size: 1.2rem;
  margin: 28px 0 16px;
  color: var(--primary);
  font-family: 'Sora', system-ui, sans-serif;
}

.article-main ul, .article-main ol {
  line-height: 2;
  color: var(--text);
  margin: 16px 0;
  padding-left: 24px;
}

.article-main li {
  margin-bottom: 12px;
}

.article-main p {
  margin: 0 0 18px;
  text-align: justify;
}

.article-main strong {
  color: var(--text);
  font-weight: 600;
}

.article-main a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.article-main a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border: 1px solid var(--secondary);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(110, 231, 183, 0.1);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--primary);
  font-family: 'Sora', system-ui, sans-serif;
}

.sidebar-card h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Sora', system-ui, sans-serif;
}

.sidebar-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.sidebar-card ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.sidebar-card li {
  margin: 8px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sidebar-card li:before {
  content: "→ ";
  color: var(--primary);
  font-weight: 600;
  margin-right: 4px;
}

.sidebar-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
}

.sidebar-card a:hover {
  color: var(--secondary);
}

.sidebar-card ol {
  margin: 0;
  padding-left: 20px;
}

.sidebar-card ol li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 8px 0;
}

.sidebar-card ol li:before {
  content: "";
}

/* Related Articles Section */
.related-articles {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.related-articles h3 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  font-family: 'Sora', system-ui, sans-serif;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.related-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.1);
  transform: translateY(-4px);
}

.related-card h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-family: 'Sora', system-ui, sans-serif;
}

.related-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* BLOG ARTICLE (Legacy classes for compatibility) */
.blog-article {
  min-height: 100vh;
}

.blog-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
  padding: 60px 20px;
  border-bottom: 1px solid var(--border);
}

.blog-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin: 0 0 16px;
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.3;
}

.blog-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.blog-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  margin: 60px auto;
  max-width: 900px;
}

.blog-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.blog-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 20px;
  font-family: 'Sora', system-ui, sans-serif;
}

.blog-body h3 {
  font-size: 1.2rem;
  margin: 28px 0 16px;
  color: var(--primary);
}

.blog-body ul, .blog-body ol {
  line-height: 2;
  color: var(--text);
}

.blog-body li {
  margin-bottom: 12px;
}

.blog-body p {
  margin: 0 0 18px;
}

.blog-body strong {
  color: var(--text);
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

@media (max-width: 900px) {
  .article-grid,
  .blog-content {
    grid-template-columns: 1fr;
  }

  .article-sidebar,
  .blog-sidebar {
    position: relative;
    top: 0;
  }

  .article-main,
  .blog-body {
    font-size: 1rem;
  }

  .sidebar-card {
    position: relative;
    top: 0;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: white;
  padding: 60px 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.footer-col p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-col a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* ===== FEATURED ARTICLES ===== */
.featured-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.featured-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.15);
  transform: translateY(-4px);
}

.featured-large {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-large:first-child,
  .featured-large:nth-child(2) {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .featured-large:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .featured-large:nth-child(2) {
    grid-column: span 2;
  }
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #0c63e4;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.featured-card h3 {
  font-size: 1.4rem;
  margin: 12px 0;
  font-family: 'Sora', system-ui, sans-serif;
}

.featured-card h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-card h3 a:hover {
  color: var(--primary);
}

.featured-card p {
  color: var(--text-muted);
  margin: 12px 0;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-meta i {
  margin-right: 4px;
  color: var(--primary);
}

.read-more {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary);
  gap: 6px;
}

.section-cta {
  padding: 40px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

/* ===== TOPICS SECTION ===== */
.topics-section {
  padding: 80px 20px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.topic-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.topic-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.1);
  transform: translateY(-4px);
}

.topic-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.topic-card h3 {
  font-size: 1.2rem;
  margin: 12px 0;
  font-family: 'Sora', system-ui, sans-serif;
}

.topic-card p {
  color: var(--text-muted);
  margin: 12px 0 20px;
  font-size: 0.95rem;
}

.topic-card a {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin: 6px 8px;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.topic-card a:hover {
  color: var(--secondary);
}

/* ===== TOOLS SECTION ===== */
.tools-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.tool-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.tool-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.1);
  transform: translateY(-4px);
}

.tool-card h3 {
  font-size: 1.3rem;
  margin: 16px 0 4px;
  font-family: 'Sora', system-ui, sans-serif;
}

.tool-subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 4px 0 12px;
}

.tool-card p {
  color: var(--text-muted);
  margin: 12px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tool-link {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.tool-link:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .featured-grid,
  .apps-grid,
  .tips-grid,
  .why-grid,
  .topics-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .featured-large:first-child,
  .featured-large:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .nav-links {
    gap: 16px;
  }

  .app-card,
  .why-card,
  .tip,
  .featured-card,
  .topic-card,
  .tool-card {
    padding: 24px;
  }

  .featured-section,
  .topics-section,
  .tools-section {
    padding: 60px 20px;
  }
}