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

  :root {
    /* Enhanced desert-inspired color palette */
    --background: oklch(0.98 0.01 75);
    --foreground: oklch(0.25 0.02 45);
    --card: oklch(1 0 0);
    --card-foreground: oklch(0.25 0.02 45);
    --primary: oklch(0.55 0.15 35);
    --primary-foreground: oklch(0.98 0.01 75);
    --secondary: oklch(0.65 0.08 140);
    --secondary-foreground: oklch(0.25 0.02 45);
    --muted: oklch(0.95 0.01 75);
    --muted-foreground: oklch(0.5 0.02 45);
    --accent: oklch(0.88 0.04 65);
    --accent-foreground: oklch(0.25 0.02 45);
    --border: oklch(0.9 0.01 75);
    --input: oklch(0.9 0.01 75);
    --ring: oklch(0.55 0.15 35);
    --radius: 0.625rem;

    /* Font families */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
  }

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

  /* Navigation */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(249, 247, 243, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .nav-container {
    padding: 1rem;
  }

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

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .logo-icon {
    font-size: 2.5rem;
    line-height: 1;
  }

  .logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
  }

  .logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.2;
  }

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

  .nav-link {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.2s;
    text-transform: capitalize;
    padding: 0.5rem 0;
  }

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

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
  }

  .hamburger {
    width: 1.5rem;
    height: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--foreground);
    transition: transform 0.3s, opacity 0.3s;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
  }

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

  .mobile-link {
    background: none;
    border: none;
    text-align: left;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.2s;
    text-transform: capitalize;
  }

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

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

    .mobile-menu-btn {
      display: none;
    }
  }

  /* Hero Section */
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
  }

  .background-icons {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
  }

  .bg-icon {
    position: absolute;
    line-height: 1;
  }

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

  .hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
  }

  .hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-foreground);
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-wrap: balance;
  }

  .text-primary {
    color: var(--primary);
  }

  .hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-visual {
    position: relative;
  }

  .hero-card {
    aspect-ratio: 1;
    border-radius: 1rem;
    background: linear-gradient(
      135deg,
      rgba(168, 85, 47, 0.2) 0%,
      rgba(222, 184, 135, 0.3) 50%,
      rgba(143, 151, 121, 0.2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-cacti {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    gap: 1rem;
  }

  .hero-sun {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    line-height: 1;
  }

  .hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33.333%;
    background: linear-gradient(to top, rgba(168, 85, 47, 0.1), transparent);
  }

  .hero-badge-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .badge-float-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .badge-icon {
    font-size: 3rem;
    line-height: 1;
  }

  .badge-title {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
  }

  .badge-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.2;
  }

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

    .hero-title {
      font-size: 4.5rem;
    }
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
  }

  .btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
  }

  .btn-primary:hover {
    opacity: 0.9;
  }

  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
  }

  .btn-outline:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
  }

  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
  }

  .btn-full {
    width: 100%;
  }

  /* About Section */
  .about-section {
    padding: 5rem 1rem;
    background-color: rgba(242, 238, 229, 0.3);
  }

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

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
  }

  .cards-grid {
    display: grid;
    gap: 2rem;
  }

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

  .card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .card-icon {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
  }

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

  .card-text {
    color: var(--muted-foreground);
    line-height: 1.6;
  }

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

    .section-title {
      font-size: 3rem;
    }
  }

  /* Programs Section */
  .programs-section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
  }

  .programs-grid {
    display: grid;
    gap: 2rem;
  }

  .program-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
  }

  .program-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .program-icon {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .program-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .program-text {
    color: var(--muted-foreground);
    line-height: 1.6;
  }

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

  /* Events Section */
  .events-section {
    padding: 5rem 1rem;
    background-color: rgba(242, 238, 229, 0.3);
    position: relative;
    overflow: hidden;
  }

  .event-card {
    background-color: var(--card);
    border: 2px solid rgba(168, 85, 47, 0.2);
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 48rem;
    margin: 0 auto;
  }

  .event-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .event-icon {
    font-size: 8rem;
    line-height: 1;
  }

  .event-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .event-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.125rem;
  }

  .event-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
  }

  .info-icon {
    font-size: 2rem;
    line-height: 1;
  }

  .event-note {
    margin-top: 3rem;
    text-align: center;
    color: var(--muted-foreground);
  }

  @media (min-width: 768px) {
    .event-content {
      flex-direction: row;
      text-align: left;
    }

    .event-info-item {
      justify-content: flex-start;
    }
  }

  /* Join Section */
  .join-section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
  }

  .join-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(168, 85, 47, 0.05), rgba(222, 184, 135, 0.1));
    pointer-events: none;
  }

  .join-container {
    max-width: 56rem;
    position: relative;
    z-index: 10;
  }

  .form-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
  }

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

  .form-row {
    display: grid;
    gap: 1.5rem;
  }

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

  .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--input);
    background-color: var(--background);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
  }

  .form-input:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px rgba(168, 85, 47, 0.2);
  }

  .form-textarea {
    resize: none;
    font-family: inherit;
  }

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

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

  /* Footer */
  .footer {
    padding: 3rem 1rem;
    border-top: 1px solid var(--border);
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-title {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
  }

  .footer-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.2;
  }

  .footer-info {
    text-align: center;
  }

  .footer-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
  }

  .footer-link {
    color: var(--primary);
    text-decoration: none;
  }

  .footer-link:hover {
    text-decoration: underline;
  }

  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      justify-content: space-between;
    }

    .footer-info {
      text-align: right;
    }
  }


.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.nav-link.active {
  color: #00aa55; /* your accent color */
  font-weight: bold;
}
