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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #f59e0b;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Main Content */
main {
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 2rem;
}

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

.hero-image svg {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

/* Page Hero (Inner Pages) */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: var(--bg-alt);
}

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

.page-hero .lead {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  background: var(--primary);
  color: white;
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.cta-primary {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.cta-secondary {
  background: var(--bg);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-secondary:hover {
  background: var(--primary);
  color: white;
}

.cta-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

.cta-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 2rem;
  background: var(--secondary);
  color: var(--text);
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.cta-floating:hover {
  transform: scale(1.05);
  background: #f59e0b;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.step {
  text-align: center;
}

.steps .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-light);
}

/* Features Preview (How It Works page) */
.features-preview {
  padding: 5rem 0;
  background: var(--bg);
}

.features-preview h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.features-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-mini {
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.feature-mini h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-mini p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonial-author {
  color: var(--text-light);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  color: white;
  text-align: center;
}

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

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary);
}

.cta-section .cta-btn:hover {
  background: var(--bg-alt);
}

/* Content Sections (Inner Pages) */
.about-content,
.contact-content,
.policy-content,
.tips-content,
.features-detail,
.guidelines-content,
.stories-content {
  padding: 3rem 0 5rem;
}

.about-section,
.policy-section {
  margin-bottom: 3rem;
}

.about-section h2,
.policy-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.about-section p,
.policy-section p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.policy-section ul {
  margin: 1rem 0 1rem 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-section,
.contact-info-section {
  /* Layout helpers */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

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

.contact-cards {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 12px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* FAQ */
.faq-content {
  padding: 3rem 0 5rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
}

.faq-icon {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
}

.faq-cta {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 3rem;
  background: var(--bg-alt);
  border-radius: 12px;
  text-align: center;
}

.faq-cta h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* FAQ Preview Section */
.faq-preview {
  padding: 4rem 0;
  background: var(--bg-alt);
  text-align: center;
}

.faq-preview .container {
  max-width: 600px;
}

.faq-preview h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.faq-preview p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Steps (How It Works) */
.steps-content {
  padding: 3rem 0 5rem;
}

.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}

.step-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.step-detailed:nth-child(even) {
  direction: rtl;
}

.step-detailed:nth-child(even) > * {
  direction: ltr;
}

.step-detailed .step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.step-visual {
  display: flex;
  justify-content: center;
}

.step-visual svg {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Features Detail */
.features-detail {
  padding: 3rem 0 5rem;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feature-list {
  margin: 0 0 1.5rem 1.5rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.feature-visual svg {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 500px;
}

/* Tips */
.tips-content {
  padding: 3rem 0 5rem;
}

.tips-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.tips-intro p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.tip-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.tip-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.tip-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.tip-card p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.tips-note {
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.tips-note h3 {
  margin-bottom: 1rem;
}

.tips-note p {
  color: var(--text-light);
}

/* Guidelines */
.guidelines-content {
  padding: 3rem 0 5rem;
  max-width: 800px;
}

.guidelines-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.guidelines-intro p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.guidelines-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.guidelines-section:last-child {
  border-bottom: none;
}

.guidelines-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.guidelines-section p {
  color: var(--text-light);
}

.guidelines-section ul {
  margin: 1rem 0 1rem 1.5rem;
}

.guidelines-section li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Stories */
.stories-content {
  padding: 3rem 0 5rem;
}

.stories-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.stories-intro p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.story-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.story-card.featured {
  grid-column: span 3;
  background: var(--bg-alt);
}

.story-quote {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.story-quote p {
  font-style: italic;
  line-height: 1.7;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.author-avatar svg {
  width: 24px;
  height: 24px;
}

.author-info strong {
  display: block;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.stories-cta {
  text-align: center;
  padding: 3rem;
  background: var(--bg-alt);
  border-radius: 12px;
}

.stories-cta h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.stories-cta p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Blog */
.blog-content {
  padding: 3rem 0 5rem;
}

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

.blog-card {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image svg {
  width: 100%;
  height: 100%;
}

.blog-card .blog-content {
  padding: 1.5rem;
}

.blog-content h2 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-content h2 a {
  text-decoration: none;
  color: var(--text);
}

.blog-content h2 a:hover {
  color: var(--primary);
}

.blog-content p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}

/* Blog Post */
.blog-post {
  padding: 2rem 0 5rem;
}

.post-header {
  text-align: center;
  padding: 3rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.post-meta {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.post-header h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.post-content .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.post-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.post-content p {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.post-content ul,
.post-content ol {
  margin: 0 0 1.5rem 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-footer {
  max-width: 720px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 12px;
  text-align: center;
}

.post-cta p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.post-navigation {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.back-to-blog {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.related-posts h4 {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.related-posts ul {
  list-style: none;
  margin: 0;
}

.related-posts li {
  margin-bottom: 0.5rem;
}

.related-posts a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
}

.related-posts a:hover {
  text-decoration: underline;
}

/* Features Links Section */
.features-links {
  padding: 3rem 0;
  background: var(--bg-alt);
}

.features-links .container {
  max-width: 800px;
  text-align: center;
}

.features-links p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Testimonials CTA Section */
.testimonials-cta {
  padding: 4rem 0;
  background: var(--bg-alt);
  text-align: center;
}

.testimonials-cta .container {
  max-width: 600px;
}

.testimonials-cta p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Blog secondary CTA section */
.post-cta-secondary {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 12px;
  text-align: center;
}

.post-cta-secondary p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Fix for CTA button spacing in features-links and testimonials-cta */
.features-links .cta-btn,
.testimonials-cta .cta-btn {
  margin-top: 1rem;
}

/* Secondary link button for internal navigation (non-affiliate) */
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  background: var(--bg);
  color: var(--primary);
  border: 2px solid var(--primary);
  transition: all 0.2s;
}
.secondary-link:hover {
  background: var(--primary);
  color: white;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 0;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .features-grid,
  .steps,
  .testimonials-grid,
  .blog-grid,
  .tips-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .step-detailed,
  .feature-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step-detailed:nth-child(even) {
    direction: ltr;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-floating {
    bottom: 1rem;
    right: 1rem;
    padding: 0.875rem 1.5rem;
  }

  .post-navigation {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  .page-hero h1,
  .post-header h1 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}
