/* Modern IP Law Firm - Static CSS */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: hsl(218, 88%, 15%);
  background-color: hsl(0, 0%, 100%);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('lovable-uploads/835bd98b-1261-4a18-96b1-9a07e811655e.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.4;
  filter: grayscale(100%);
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.max-w-7xl {
  max-width: 80rem;
  margin: 0 auto;
}

.max-w-4xl {
  max-width: 56rem;
  margin: 0 auto;
}

.max-w-3xl {
  max-width: 48rem;
  margin: 0 auto;
}

.max-w-2xl {
  max-width: 42rem;
  margin: 0 auto;
}

/* Grid System */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Flexbox */
.flex {
  display: flex;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Padding and Margin */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

/* Colors */
.text-white { color: hsl(0, 0%, 100%); }
.text-foreground { color: hsl(218, 88%, 15%); }
.text-primary { color: hsl(217, 100%, 58%); }
.text-muted-foreground { color: hsl(218, 27%, 45%); }

.bg-background { background-color: hsl(0, 0%, 100%); }
.bg-primary { background-color: hsl(217, 100%, 58%); }
.bg-secondary { background-color: hsl(218, 88%, 15%); }
.bg-deep-navy { background-color: hsl(218, 88%, 15%); }

/* Gradients */
.bg-gradient-hero {
  background: linear-gradient(135deg, hsl(218, 88%, 15%) 0%, hsl(218, 82%, 42%) 45%, hsl(217, 100%, 58%) 100%);
}

.bg-gradient-glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 100%);
}

/* Glass Card */
.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(42, 123, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-enhanced {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid hsl(220, 13%, 91%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* Buttons */
.btn-hero {
  position: relative;
  overflow: hidden;
  padding: 1rem 2rem;
  font-weight: 600;
  color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(217, 100%, 58%) 0%, hsl(218, 82%, 42%) 100%);
  box-shadow: 0 4px 20px rgba(42, 123, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 123, 255, 0.4);
}

.btn-ghost {
  position: relative;
  padding: 1rem 2rem;
  font-weight: 600;
  color: hsl(0, 0%, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-ghost:hover {
  background-color: hsl(0, 0%, 100%);
  color: hsl(218, 88%, 15%);
  transform: translateY(-1px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(15, 37, 88, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  width: 100%;
  padding-left: 2rem;
  padding-right: 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo img {
  height: 3rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: 2rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: hsl(0, 0%, 100%);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  border-radius: 0.375rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: hsl(0, 0%, 100%);
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: hsl(0, 0%, 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(218, 88%, 15%) 0%, hsl(218, 82%, 42%) 45%, hsl(217, 100%, 58%) 100%);
  padding: 2rem 4rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background-color: rgba(220, 214, 219, 0.05);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(15, 37, 88, 0.2) 100%);
}

.hero-text {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: hsl(168, 70%, 84%);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  margin-bottom: 2rem;
  line-height: 0.9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-divider {
  width: 100%;
  height: 0.25rem;
  background-color: hsl(168, 70%, 84%);
  border-radius: 9999px;
  margin: 1rem 0;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-footer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Section Styles */
.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(218, 88%, 15%);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: hsl(218, 27%, 45%);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

/* Parallax Sections */
.parallax {
  padding: 8rem 0;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(42, 123, 255, 0.8);
}

.parallax-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: hsl(0, 0%, 100%);
}

.parallax-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.parallax-description {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 48rem;
  margin: 0 auto;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: hsl(218, 88%, 15%);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(220, 13%, 91%);
  border-radius: 0.375rem;
  background-color: hsl(0, 0%, 100%);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(217, 100%, 58%);
  box-shadow: 0 0 0 2px rgba(42, 123, 255, 0.2);
}

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

.form-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: hsl(217, 100%, 58%);
  color: hsl(0, 0%, 100%);
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: hsl(218, 82%, 42%);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    order: 2;
    padding: 3rem 2rem;
  }
  
  .hero-visual {
    order: 1;
    min-height: 40vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .px-sm-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    justify-content: flex-start;
  }
  
  .grid-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .grid-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  h1 { font-size: 4rem; }
  h2 { font-size: 3rem; }
  
  .hero-title {
    font-size: 6rem;
  }
  
  .px-md-8 { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1024px) {
  .nav-container {
    padding-left: 4rem;
    padding-right: 2rem;
  }
  
  .hero-content {
    padding: 2rem 4rem;
  }
  
  .hero-title {
    font-size: 7rem;
  }
  
  .grid-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .grid-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .px-lg-8 { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 7rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.6; }
.tracking-wider { letter-spacing: 0.05em; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.overflow-hidden { overflow: hidden; }

.opacity-90 { opacity: 0.9; }

.cursor-pointer { cursor: pointer; }

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* FAQ Styles */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-category {
  border-radius: 12px;
  padding: 2rem;
  color: white;
  box-shadow: 5px 10px 20px rgba(0,0,0,0.15);
}

.faq-category.bg-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary)) 90%);
}

.faq-category.bg-muted {
  background: linear-gradient(135deg, hsl(var(--muted-foreground)), hsl(var(--muted-foreground)) 90%);
}

.faq-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.faq-answer.open {
  max-height: 200px;
  padding: 1rem;
}

/* Featured Post Styles */
.featured-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 3rem;
}

.featured-post-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-image {
  background: hsl(var(--muted));
  overflow: hidden;
}

.badge-featured {
  background: hsl(var(--primary));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Category Filter Styles */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.category-filter {
  padding: 0.5rem 1rem;
  border: 2px solid hsl(var(--border));
  background: white;
  color: hsl(var(--foreground));
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-filter:hover,
.category-filter.active {
  background: hsl(var(--primary));
  color: white;
  border-color: hsl(var(--primary));
}

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

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

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.insight-content {
  padding: 1.5rem;
}

.insight-category {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.insight-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.insight-excerpt {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1rem;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Responsive FAQ and Insights Styles */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-category {
    padding: 1.5rem;
  }
  
  .featured-post-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-post-content {
    padding: 2rem;
    order: 2;
  }
  
  .featured-post-image {
    order: 1;
    min-height: 250px;
  }
  
  .category-filters {
    gap: 0.5rem;
  }
  
  .category-filter {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
  }
}

.transform { transform: translateZ(0); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Contact Icons */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}

.icon-large {
  width: 3rem;
  height: 3rem;
}

/* FAQ Styles */
.faq-item {
  border: 1px solid hsl(220, 13%, 91%);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: hsl(220, 14%, 96%);
}

.faq-answer {
  padding: 0 1rem 1rem 1rem;
  color: hsl(218, 27%, 45%);
  line-height: 1.6;
  display: none;
}

.faq-answer.show {
  display: block;
}