/*
---
AWWARDS-LEVEL DIGITAL AGENCY THEME
---
*/

/* -------------------
   1. CSS Variables & Global Styles
   ------------------- */
:root {
  --font-primary: "Poppins", sans-serif;
  --font-display: "Bangers", cursive;

  --color-primary: #4f46e5; /* Indigo */
  --color-primary-dark: #4338ca;
  --color-secondary: #10b981; /* Emerald */
  --color-background: #f9fafb; /* Very light gray */
  --color-surface: #ffffff;
  --color-text: #1f2937; /* Dark Gray */
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;

  --header-height: 80px;
  --border-radius: 12px;
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --transition-fast: 0.2s ease-in-out;
  --transition-slow: 0.4s ease-in-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: rgba(79, 70, 229, 0.1);
  padding: 0.5em 1em;
  border-radius: 999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* -------------------
   2. Buttons
   ------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-text);
  color: white;
  border-color: var(--color-text);
  transform: translateY(-3px);
}

.btn i {
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

/* -------------------
   3. Header & Navigation
   ------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-slow);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo,.footer-logo-link img {
  height: 60px;
  transition: transform var(--transition-slow);
}

.footer-logo-link img {
  filter: brightness(0) invert(1);
}

.logo-link:hover .logo {
  transform: rotate(15deg);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-slow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
}

.bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 3px;
  transition: all var(--transition-slow);
  position: absolute;
}

.bar-top {
  top: 0;
}
.bar-middle {
  top: 50%;
  transform: translateY(-50%);
}
.bar-bottom {
  bottom: 0;
}

.mobile-nav-open .bar-top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-nav-open .bar-middle {
  opacity: 0;
}
.mobile-nav-open .bar-bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-surface);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav nav li {
  margin: 2rem 0;
}

.mobile-nav nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

/* -------------------
   4. Hero Section
   ------------------- */
.hero {
  padding: calc(var(--header-height) + 6rem) 0 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-background) 0%, #f0f2ff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: var(--color-text);
}
.hero-title .line {
  display: block;
}
.hero-title .line:nth-child(2) {
  color: var(--color-primary);
  padding-left: 2rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.hero-image-placeholder {
  color: white;
  font-size: 15rem;
}

.hero-shapes .hero-shape {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.05;
}

.hero-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}
.hero-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  right: 50px;
}
.hero-shape.shape-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 40%;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
  overflow: hidden;
}

.marquee-track {
  display: inline-block;
  animation: marquee 40s linear infinite;
  font-weight: 600;
  color: var(--color-text-muted);
}
.marquee-track span {
  margin: 0 2rem;
}
.marquee-track .star {
  color: var(--color-primary);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* -------------------
   5. Services Section
   ------------------- */
.services-section {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--color-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.service-link {
  font-weight: 600;
  color: var(--color-primary);
}
.service-link i {
  transition: transform var(--transition-fast);
  margin-left: 0.25rem;
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* -------------------
   6. About Us Section
   ------------------- */
.about-section {
  padding: 6rem 0;
  background-color: var(--color-surface);
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  perspective: 1000px;
}

.about-image {
  width: 100%;
  padding-top: 120%; /* Aspect ratio */
  background-color: var(--color-text-muted);
  border-radius: var(--border-radius);
  background-image: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=2832&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s;
}

.about-image-wrapper:hover .about-image {
  transform: rotateY(5deg) rotateX(2deg) scale(1.02);
}

.about-content-wrapper {
  text-align: left;
}
.about-content-wrapper .section-tag,
.about-content-wrapper .section-title {
  text-align: left;
  margin-left: 0;
}
.about-content-wrapper p {
  margin-bottom: 1.5rem;
}

/* -------------------
   7. CTA Section
   ------------------- */
.cta-section {
  padding: 6rem 0;
  background-color: var(--color-primary);
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 90%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  color: white;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta-btn {
  background-color: white;
  color: var(--color-primary);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.cta-btn:hover {
  background-color: var(--color-background);
  color: var(--color-primary-dark);
}

/* -------------------
   8. Testimonials Section
   ------------------- */
.testimonials-section {
  padding: 6rem 0;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-size: 1.125rem;
  font-weight: 600;
}
.author-title {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.testimonial-text {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--color-text-muted);
}
.testimonial-rating {
  color: #fbbf24; /* Amber */
}

/* -------------------
   9. Process Section
   ------------------- */
.process-section {
  padding: 6rem 0;
  background-color: var(--color-surface);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-border);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.step-description {
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
}

.process-connector {
  flex-grow: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary) 6px,
    transparent 6px,
    transparent 12px
  );
  margin-top: 4.5rem;
}

/* -------------------
   10. FAQ Section
   ------------------- */
.faq-section {
  padding: 6rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  transition: transform var(--transition-slow);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-slow),
    padding var(--transition-slow);
}
.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust as needed */
}

/* -------------------
   11. Footer
   ------------------- */
.footer {
  background-color: #111827; /* Very Dark Blue */
  color: var(--color-text-muted);
  padding: 6rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-shapes .footer-shape {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.1);
}
.footer-shape.shape-1 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}
.footer-shape.shape-2 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-link {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-link .logo-text {
  color: white;
}

.footer-about-text {
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-text-muted);
  border-radius: 50%;
  color: var(--color-text-muted);
}
.social-link:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.footer-col-title {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul,
.contact-info {
  list-style: none;
}

.footer-links li,
.contact-info li {
  margin-bottom: 1rem;
}

.footer-links a,
.contact-info a {
  color: var(--color-text-muted);
}
.footer-links a:hover,
.contact-info a:hover {
  color: white;
  padding-left: 5px;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info i {
  margin-top: 5px;
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid #374151; /* Gray-700 */
  padding-top: 2rem;
  text-align: center;
}

/* -------------------
   12. Subpages (Contact, Legal)
   ------------------- */
body.subpage .header {
  position: sticky;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.page-header {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-background) 0%, #f0f2ff 100%);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  letter-spacing: 2px;
}
.page-header .page-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
}
.breadcrumbs {
  margin-top: 1rem;
  color: var(--color-text-muted);
}
.breadcrumbs a {
  color: var(--color-text-muted);
}
.breadcrumbs a:hover {
  color: var(--color-primary);
}
.breadcrumbs i {
  font-size: 0.75rem;
  margin: 0 0.5rem;
}

.page-content {
  padding: 6rem 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.content-wrapper h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
}
.content-wrapper p {
  margin-bottom: 1.5rem;
}

.contact-section {
  padding: 6rem 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  background-color: var(--color-surface);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.method-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
.method-details h3 {
  font-size: 1.25rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background-color: var(--color-background);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.contact-form textarea {
  resize: vertical;
}

/* Form Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 2000;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup-content {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.popup:target .popup-content {
  transform: scale(1);
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--color-text-muted);
}
.popup-content .fa-check-circle {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}
.popup-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* -------------------
   13. Animations
   ------------------- */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-load {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
  animation-delay: var(--delay, 0s);
}

.animate-on-scroll {
  opacity: 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  transform: translateY(40px);
  transition-delay: var(--delay, 0s);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------
   14. Responsiveness
   ------------------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    order: 2;
  }
  .hero-image-container {
    order: 1;
    margin-bottom: 3rem;
  }
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-title .line:nth-child(2) {
    padding-left: 0;
  }
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  .hero-cta {
    justify-content: center;
  }

  .about-section .container {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .process-connector {
    display: none;
  }
  .process-step {
    border-bottom: 1px dashed var(--color-border);
    width: 100%;
    max-width: 400px;
  }
  .process-step:last-child {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-nav {
    display: flex;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-info li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-image {
    width: 300px;
    height: 300px;
  }
  .hero-image-placeholder {
    font-size: 9rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
}
