:root {
  --background: #ABCFA8;
  --text-dark: #11361B;
  --accent-green: #ABCFA8;
  --white: #ffffff;
  --card-bg: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

#root {
  min-height: 100vh;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }
}


@media (min-width: 768px) {
  .navbar {
    padding: 1.5rem 3rem;
  }
}

.logo {
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  letter-spacing: -0.05em;
}


.nav-badges {
  display: none;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-badges {
    display: flex;
  }
}

.nav-badge {
  background-color: rgba(17, 54, 27, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  font-size: clamp(0.875rem, 3vw, 1rem);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--text-dark);
  border-radius: 9999px;
  min-height: 44px;
  justify-content: center;
}


.nav-cta:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Hero Section */
.hero {
  width: 100%;
  padding: 4rem 1rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .hero {
    padding: 2.25rem 1rem 2rem;
    align-items: flex-start;
    padding-top: 6.75rem; /* Account for navbar */
  }

  .hero-flex {
    align-items: stretch;
    gap: 2rem;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

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

  .status-badge {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 10vw, 2.85rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.55;
    max-width: 95%;
    margin-bottom: 1.5rem;
  }

  .hero-cta-container {
    align-items: flex-start;
    gap: 1rem;
  }

  .cta-button {
    font-size: 1.05rem;
    font-weight: 800;
    padding: 0.95rem 1.5rem;
  }

  .side-hustle-badge {
    gap: 0.65rem;
  }

  .avatar-stack {
    margin-left: 0;
  }

  .avatar-item {
    width: 2.35rem;
    height: 2.35rem;
  }

  .badge-text {
    font-size: 0.95rem;
  }

  .image-wrapper {
    width: 17rem;
    height: 17rem;
  }

  .instructor-badge {
    bottom: -0.85rem;
    padding: 0.7rem 1.15rem;
  }

  .instructor-name {
    font-size: 1.4rem;
  }
}


@media (min-width: 768px) {
  .hero {
    padding: 7rem 2.5rem;
  }
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.hero-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .hero-flex {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.hero-left {
  flex: 1;
  max-width: 42rem;
}

.status-badge {
  display: inline-block;
  background-color: var(--text-dark);
  color: var(--accent-green);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fade-in-up 1s ease-out;
}

.dot {
  margin-right: 0.5rem;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}


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

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

.hero-subtitle {
  font-size: clamp(1rem, 4vw, 1.125rem);
  font-weight: 500;
  max-width: 100%;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--text-dark);
}


@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* CTA Area */
.hero-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-cta-container {
    flex-direction: row;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--text-dark);
  color: white;
  padding: clamp(1rem, 4vw, 1rem) 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(1rem, 4vw, 1rem);
  min-height: 48px;
  transition: transform 0.2s;
}


.cta-button:hover {
  transform: scale(1.05);
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
}

.side-hustle-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-stack {
  display: flex;
  margin-left: 0.75rem;
}

.avatar-item {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.avatar-white {
  background-color: white;
  z-index: 10;
}

.avatar-green {
  background-color: var(--text-dark);
  color: white;
  margin-left: -0.75rem;
  z-index: 20;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Hero Right / Image */
.hero-right {
  flex-shrink: 0;
  position: relative;
}

.image-container {
  position: relative;
}

.image-wrapper {
  width: clamp(14rem, 40vw, 16rem);
  height: clamp(14rem, 40vw, 16rem);
  border-radius: 9999px;
  overflow: hidden;
  border: 4px solid var(--card-bg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


@media (min-width: 768px) {
  .image-wrapper {
    width: 20rem;
    height: 20rem;
  }
}

@media (min-width: 1024px) {
  .image-wrapper {
    width: 24rem;
    height: 24rem;
  }
}

.instructor-image {
  width: 100%;
  height: 100%;
  object-cover: cover;
  object-fit: cover;
}

.instructor-badge {
  position: absolute;
  bottom: -1rem;
  right: 0;
  background-color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(17, 54, 27, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: rotate(3deg);
  transition: transform 0.5s;
}

@media (min-width: 768px) {
  .instructor-badge {
    right: -1rem;
  }
}

.instructor-badge:hover {
  transform: scale(1.05) rotate(3deg);
}

.instructor-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.instructor-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-dark);
}

/* Ticker */
.ticker-wrapper {
  background-color: var(--text-dark);
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  transform: rotate(-1deg) scale(1.05);
  margin-top: -2rem;
  z-index: 30;
}

@media (max-width: 480px) {
  .ticker-wrapper {
    transform: none;
    margin-top: -1rem;
    padding: 0.75rem 0;
  }
}


.ticker-content {
  display: flex;
  white-space: nowrap;
}

.ticker-items {
  display: flex;
  gap: clamp(1.5rem, 6vw, 3rem);
  animation: scroll 20s linear infinite;
}


.ticker-item {
  color: var(--accent-green);
  font-size: clamp(1.125rem, 5vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 1.5rem);
}


@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .ticker-items {
    animation-duration: 15s;
  }
}



/* Shift Section */
.shift-section {
  background-color: var(--accent-green);
 
  text-align: center;
}


.container-small {
  max-width: 56rem;
  margin: 0 auto;
}

.section-tag {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.shift-title {
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  font-weight: 750;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}


@media (min-width: 768px) {
  .shift-title {
    font-size: 3rem;
  }
}

.shift-title .italic {
  font-family: serif;
  font-style: italic;
  font-weight: 400;
}

.shift-title .highlight {
  background-color: var(--text-dark);
  color: white;
  padding: 0 0.5rem;
}

.shift-subtitle {
   font-weight: 400;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 4rem;
  line-height: 1.6;
  opacity: 0.8;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 5vw, 2rem);
  align-items: start;
  margin: 5rem auto;
  padding: 0 1rem;
  max-width: 100%;
}


@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.card {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  padding: clamp(1.5rem, 6vw, 2rem) clamp(1.25rem, 5vw, 1.75rem);
  min-height: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}


@media (max-width: 767px) {
  .card {
    padding: 2rem;
    min-height: 14rem;
  }
}

.card-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--text-dark);
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex-grow: 1;
}

/* Learn Section */
.learn-section {
  background-color: var(--text-dark);
  color: var(--accent-green);
  padding: 5rem 1.5rem;
  border-radius: 3rem 3rem 0 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 20;
}

@media (min-width: 768px) {
  .learn-section {
    padding: 7rem 2.5rem;
  }
}

.container-large {
  max-width: 72rem;
  margin: 0 auto;
}

.learn-header {
  text-align: center;
  margin-bottom: 4rem;
}

.learn-title {
  font-size: clamp(2rem, 8vw, 2.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}


@media (min-width: 768px) {
  .learn-title {
    font-size: 3.5rem;
  }
}

.learn-subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .learn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.learn-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 2rem;
  transition: background-color 0.3s;
}

.learn-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.part-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.card-title-white {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
}

.check-icon {
  color: #4ade80; /* Tailwind green-400 */
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Mentor Section */
.mentor-section {
  background-color: var(--accent-green);
  padding: 6rem 1.5rem;
}

.container-medium {
  max-width: 64rem;
  margin: 0 auto;
}

.mentor-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .mentor-flex {
    flex-direction: row;
    gap: 4rem;
  }
}

.mentor-image-column {
  width: 100%;
  max-width: 20rem;
}

.mentor-image-wrapper {
  aspect-ratio: 1/1;
  border-radius: 2rem;
  overflow: hidden;
  border: 4px solid var(--text-dark);
  box-shadow: 12px 12px 0 0 var(--text-dark);
}

.mentor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-content-column {
  flex: 1;
  text-align: left;
}

.mentor-label {
  display: inline-block;
  background-color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid var(--text-dark);
  margin-bottom: 1rem;
}

.mentor-name {
  font-size: clamp(2rem, 8vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}


@media (min-width: 768px) {
  .mentor-name {
    font-size: 3.5rem;
  }
}

.mentor-bio {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Details Section */
.details-section {
  background-color: var(--accent-green);
  padding: 4rem 1.5rem 6rem;
}

.details-card {
  background-color: var(--text-dark);
  color: white;
  border-radius: 2.5rem;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .details-card {
    padding: 4rem 3rem;
  }
}

.blur-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: #22c55e; /* green-500 */
  filter: blur(100px);
  opacity: 0.2;
}

.details-title {
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}


@media (min-width: 768px) {
  .details-title {
    font-size: 3rem;
  }
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-circle {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #86efac; /* green-300 */
}

.detail-label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.detail-value {
  opacity: 0.7;
  font-size: 1rem;
}

.pricing-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 3rem;
  position: relative;
  z-index: 10;
}

.price-value {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.book-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: white;
  color: var(--text-dark);
  padding: clamp(1rem, 4vw, 1rem) 2rem;
  border-radius: 9999px;
  font-size: clamp(1rem, 4vw, 1.125rem);
  font-weight: 700;
  text-decoration: none;
  min-height: 48px;
  transition: background-color 0.2s;
}


.book-button:hover {
  background-color: #86efac; /* green-300 */
}

@media (max-width: 480px) {
  .details-section {
    padding: 3rem 1rem 4rem;
  }

  .details-card {
    padding: 2.25rem 1rem 1.75rem;
    border-radius: 2rem;
  }

  .blur-effect {
    width: 10rem;
    height: 10rem;
    opacity: 0.15;
  }

  .details-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .details-grid {
    gap: 0.9rem;
    margin-bottom: 2rem;
  }

  .detail-item {
    width: 100%;
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    column-gap: 0.9rem;
    row-gap: 0.2rem;
    align-items: center;
    text-align: left;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
  }

  .icon-circle {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0;
    grid-row: 1 / span 2;
  }

  .icon-circle svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .detail-label {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .detail-value {
    font-size: 0.95rem;
    opacity: 0.8;
  }

  .pricing-block {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .price-value {
    font-size: 2.75rem;
  }

  .price-label {
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
  }

  .book-button {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ Section */
.faq-section {
  background-color: var(--accent-green);
  padding: 6rem 1.5rem;
}

.container-mini {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}


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

.faq-item {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  border: 1px solid rgba(17, 54, 27, 0.1);
  overflow: hidden;
}

.faq-header {
  list-style: none;
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-header::-webkit-details-marker {
  display: none;
}

.chevron {
  transition: transform 0.3s;
  opacity: 0.6;
}

.faq-item[open] .chevron {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 2rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Testimonial Section */
.testimonial-section {
  background-color: var(--accent-green);
  padding: 6rem 1.5rem 2rem;
}

.testimonial-title {
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}


.testimonial-card {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 3rem 2rem;
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  border: 1px solid rgba(17, 54, 27, 0.1);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 4rem 6rem;
  }
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  transition: transform 0.2s;
  z-index: 10;
}

.nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.25rem;
  }
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--accent-green);
  padding: 3rem 1.5rem 2rem;
  border-radius: 3rem 3rem 0 0;
  margin-top: 0;
  text-align: center;
}

.footer-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid var(--accent-green);
  margin: 0 auto 1.5rem;
}

.footer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.footer-img:hover {
  filter: grayscale(0%);
}

.footer-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 1rem;
  opacity: 0.6;
  max-width: 24rem;
  margin: 0 auto 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  color: var(--accent-green);
  transition: color 0.3s, transform 0.3s;
}

.social-link:hover {
  color: white;
  transform: scale(1.1);
}

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

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
