/* ===================================================================
   SLICK DIGITAL - MAIN STYLESHEET
   Design Language: Dark theme, Sora font, blue (#2196f3) accents,
   purple (#a200ff) brand, modern edges, clean spacing
   =================================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', Helvetica, Arial, sans-serif;
  color: #fff;
  background: #0a0e17;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #2196f3;
  color: #fff;
  padding: 12px 24px;
  z-index: 9999;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

strong {
  font-weight: 600;
  color: #fff;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 0;
  font-size: 13px;
}

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

.header-contact {
  display: flex;
  gap: 24px;
}

.header-contact a,
.header-location {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  font-size: 13px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-contact a:hover {
  color: #2196f3;
}

.header-location {
  color: rgba(255, 255, 255, 0.4);
}

.header-main {
  padding: 14px 0;
}

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

.logo {
  display: flex;
  align-items: baseline;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.logo-slick {
  font-weight: 700;
  font-style: italic;
  color: #a200ff;
  font-size: 26px;
}

.logo-digital {
  font-weight: 300;
  font-style: normal;
  color: #ffffff;
  font-size: 24px;
  margin-left: 4px;
}

.logo-dot {
  font-weight: 300;
  color: #ffffff;
  font-size: 24px;
}

/* ===== MAIN NAVIGATION ===== */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2196f3;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.5);
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.has-dropdown:hover > a::before,
.has-dropdown.open > a::before {
  transform: rotate(180deg);
  border-top-color: #2196f3;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  background: rgba(14, 18, 30, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.dropdown a:hover {
  color: #2196f3;
  background: rgba(255, 255, 255, 0.03);
}

.dropdown a::after {
  display: none;
}

/* CTA Nav Button */
.cta-nav-button {
  padding: 10px 24px !important;
  border: 2px solid #2196f3 !important;
  color: #2196f3 !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.cta-nav-button:hover {
  background: #2196f3 !important;
  color: #fff !important;
}

.cta-nav-button::after {
  display: none !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: #2196f3;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid #2196f3;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-align: center;
}

.cta-button:hover {
  background: #1976d2;
  border-color: #1976d2;
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  border-color: #2196f3;
  color: #2196f3;
}

.cta-button.white {
  background: #fff;
  color: #0a0e17;
  border-color: #fff;
}

.cta-button.white:hover {
  background: transparent;
  color: #fff;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: #0a0e17;
}

.section-darker {
  background: #060a12;
}

.section-white {
  background: #fff;
}

.section-white h1,
.section-white h2,
.section-white h3,
.section-white h4 {
  color: #1a1a1a;
}

.section-white p {
  color: #555;
}

.section-white strong {
  color: #1a1a1a;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  font-size: 15px;
}

/* Divider line between sections */
.section-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}

/* ===== HERO (reusable page hero) ===== */
.page-hero {
  padding: 140px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 30px;
}

.page-hero + .section {
  padding-top: 60px;
}

.page-hero + .section .content-area:first-child {
  padding-top: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #2196f3;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumbs .current {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== CARDS ===== */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 36px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(33, 150, 243, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 14px;
}

.card p {
  font-size: 14px;
}

.card-link {
  display: inline-block;
  margin-top: 16px;
  color: #2196f3;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #fff;
}

/* White section cards */
.section-white .card {
  background: #fff;
  border: 1px solid #e8e8e8;
}

.section-white .card:hover {
  border-color: #2196f3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* ===== SERVICE CARDS (from homepage) ===== */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

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

.service-card ul li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.service-bonus {
  font-size: 13px;
  font-weight: 400;
  color: #2196f3;
  font-style: italic;
}

/* ===== PRICING TIERS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 150, 243, 0.3);
}

.pricing-card.featured {
  border-color: #2196f3;
  background: rgba(33, 150, 243, 0.05);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2196f3;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.pricing-subtitle {
  font-size: 14px;
  color: #2196f3;
  font-weight: 500;
  margin-bottom: 16px;
}

.price {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.price-period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card ul li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-left: 20px;
  position: relative;
}

.pricing-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #2196f3;
  font-weight: 700;
}

.pricing-tagline {
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 40px 24px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #2196f3;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #2196f3;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  margin-bottom: 30px;
  font-size: 16px;
}

.trust-signals {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.trust-signals span {
  margin: 0 10px;
}

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.1);
  border: 2px solid #2196f3;
  color: #2196f3;
  font-size: 18px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #060a12;
  border-top: 3px solid #2196f3;
}

.footer-main {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

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

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-col ul a:hover {
  color: #2196f3;
}

.footer-col address {
  font-style: normal;
}

.footer-col address p {
  margin-bottom: 6px;
}

.footer-col address a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-col address a:hover {
  color: #2196f3;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: #2196f3;
  color: #2196f3;
  background: rgba(33, 150, 243, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2196f3;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

/* White section forms */
.section-white .form-group label {
  color: #333;
}

.section-white .form-group input,
.section-white .form-group select,
.section-white .form-group textarea {
  background: #fff;
  border: 1.5px solid #ccc;
  color: #333;
}

.section-white .form-group input:focus,
.section-white .form-group select:focus,
.section-white .form-group textarea:focus {
  border-color: #2196f3;
}

/* ===== CONTENT AREA (for long-form pages) ===== */
.content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.content-area h2 {
  margin-top: 50px;
  margin-bottom: 16px;
  padding-top: 20px;
}

.content-area h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  color: #2196f3;
  font-size: 1.1rem;
}

.content-area p {
  margin-bottom: 18px;
  font-size: 15px;
}

.content-area ul,
.content-area ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

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

.content-area li {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 6px;
}

.content-area li strong {
  color: #fff;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

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

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 70px 0;
  }

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

  .header-top {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: none;
    background: none;
    border: none;
    padding: 0 0 0 20px;
    min-width: auto;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero {
    padding: 100px 0 30px;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-hero .subtitle {
    font-size: 15px;
  }

  .breadcrumbs {
    flex-wrap: wrap;
  }

  .cta-nav-button {
    text-align: center;
    margin-top: 8px;
  }

  .content-area {
    padding: 40px 0 60px;
  }

  .content-area h2 {
    margin-top: 36px;
    font-size: clamp(1.25rem, 5vw, 1.6rem);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-signals {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .trust-signals span {
    margin: 0;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .faq-question {
    padding: 20px 36px 20px 0;
    font-size: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .logo-slick {
    font-size: 20px;
  }

  .logo-digital, .logo-dot {
    font-size: 18px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 13px;
    width: 100%;
  }

  .cta-button.secondary {
    width: auto;
  }

  .page-hero {
    padding: 90px 0 24px;
  }

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

  .card {
    padding: 24px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  h2 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
}
