    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #FDFCF9;
      color: #2D3436;
      line-height: 1.6;
      overflow-x: hidden;
    }

    html, body {
      height: 100%;
      width: 100%;
    }

    .main-wrapper {
      width: 100%;
      min-height: 100%;
      overflow-y: auto;
    }

    /* Header Navigation */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(253, 252, 249, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #3A9B7F;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .logo-icon {
      width: 40px;
      height: 40px;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #2D3436;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #3A9B7F;
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: #3A9B7F;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .auth-buttons {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-login, .btn-signup, .btn-logout {
      padding: 0.6rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 0.95rem;
    }

    .btn-login {
      background: transparent;
      color: #3A9B7F;
      border: 2px solid #3A9B7F;
    }

    .btn-login:hover {
      background: #3A9B7F;
      color: white;
    }

    .btn-signup, .btn-logout {
      background: linear-gradient(135deg, #3A9B7F 0%, #2C7A63 100%);
      color: white;
    }

    .btn-signup:hover, .btn-logout:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(58, 155, 127, 0.4);
    }

    .user-info {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .user-name {
      color: #3A9B7F;
      font-weight: 600;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: #3A9B7F;
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      margin-top: 80px;
      min-height: 85vh;
      background: linear-gradient(135deg, rgba(58, 155, 127, 0.05) 0%, rgba(255, 183, 77, 0.05) 100%);
      display: flex;
      align-items: center;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(58, 155, 127, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      width: 100%;
    }

    .hero-text h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: #3A9B7F;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease;
    }

    .hero-text p {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      color: #636E72;
      margin-bottom: 2.5rem;
      animation: fadeInUp 1s ease;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      animation: fadeInUp 1.2s ease;
    }

    .btn-primary, .btn-secondary {
      padding: 1rem 2.5rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #3A9B7F 0%, #2C7A63 100%);
      color: white;
      box-shadow: 0 10px 30px rgba(58, 155, 127, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(58, 155, 127, 0.4);
    }

    .btn-secondary {
      background: white;
      color: #3A9B7F;
      border: 2px solid #3A9B7F;
    }

    .btn-secondary:hover {
      background: #3A9B7F;
      color: white;
    }

    .hero-image {
      position: relative;
      animation: fadeInRight 1s ease;
    }

    .hero-food-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .food-card {
      background: white;
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .food-card:hover {
      transform: translateY(-10px);
    }

    .food-icon {
      width: 100%;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
      border-radius: 15px;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .food-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .food-card h3 {
      font-family: 'Poppins', sans-serif;
      color: #2D3436;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .food-meta {
      display: flex;
      gap: 1rem;
      font-size: 0.85rem;
      color: #636E72;
    }

    .food-meta span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    /* Categories Section */
    .categories-section {
      padding: 5rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-header h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: #3A9B7F;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.2rem;
      color: #636E72;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .category-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
    }

    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    .category-image {
      width: 100%;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
      background: linear-gradient(135deg, #3A9B7F15 0%, #FFB74D15 100%);
      transition: transform 0.3s ease;
      overflow: hidden;
    }

    .category-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .category-card:hover .category-image {
      transform: scale(1.1);
    }

    .category-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent 0%, rgba(58, 155, 127, 0.9) 100%);
      display: flex;
      align-items: flex-end;
      padding: 2rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .category-card:hover .category-overlay {
      opacity: 1;
    }

    .category-info {
      padding: 1.5rem;
    }

    .category-info h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      color: #2D3436;
      margin-bottom: 0.5rem;
    }

    .category-count {
      color: #3A9B7F;
      font-weight: 600;
    }

    /* Featured Recipes */
    .recipes-section {
      background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
      padding: 5rem 2rem;
    }

    .recipes-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .filter-bar {
      display: flex;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .filter-btn {
      padding: 0.7rem 1.5rem;
      border-radius: 25px;
      border: 2px solid #3A9B7F;
      background: white;
      color: #3A9B7F;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn:hover, .filter-btn.active {
      background: #3A9B7F;
      color: white;
      transform: translateY(-2px);
    }

    .recipes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
    }

    .recipe-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .recipe-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .recipe-image-container {
      position: relative;
      height: 250px;
      overflow: hidden;
    }

    .recipe-image {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
      background: linear-gradient(135deg, #FFB74D15 0%, #3A9B7F15 100%);
      transition: transform 0.3s ease;
    }

    .recipe-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .recipe-card:hover .recipe-image {
      transform: scale(1.1);
    }

    .recipe-badges {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .badge {
      background: white;
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .badge.time { color: #FFB74D; }
    .badge.difficulty { color: #3A9B7F; }

    .recipe-content {
      padding: 1.5rem;
    }

    .recipe-content h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.4rem;
      color: #2D3436;
      margin-bottom: 1rem;
    }

    .recipe-meta {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #636E72;
      font-size: 0.9rem;
    }

    .meta-icon {
      color: #3A9B7F;
    }

    .recipe-description {
      color: #636E72;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .quick-view-btn {
      width: 100%;
      padding: 0.8rem;
      background: linear-gradient(135deg, #3A9B7F 0%, #2C7A63 100%);
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .quick-view-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(58, 155, 127, 0.3);
    }

    /* Why Section */
    .why-section {
      padding: 5rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .why-item {
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .why-item:hover {
      transform: translateY(-10px);
    }

    .why-icon {
      font-size: 4rem;
      margin-bottom: 1.5rem;
    }

    .why-item h3 {
      font-family: 'Poppins', sans-serif;
      color: #3A9B7F;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .why-item p {
      color: #636E72;
      line-height: 1.6;
    }

    /* Newsletter CTA */
    .newsletter-section {
      background: linear-gradient(135deg, #3A9B7F 0%, #2C7A63 100%);
      padding: 5rem 2rem;
      text-align: center;
      color: white;
    }

    .newsletter-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .newsletter-content h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 1rem;
    }

    .newsletter-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    .newsletter-form {
      display: flex;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
    }

    .newsletter-input {
      flex: 1;
      padding: 1rem 1.5rem;
      border-radius: 30px;
      border: none;
      font-size: 1rem;
      outline: none;
    }

    .newsletter-btn {
      padding: 1rem 2.5rem;
      border-radius: 30px;
      background: white;
      color: #3A9B7F;
      border: none;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    /* Footer */
    .footer {
      background: #F8F9FA;
      padding: 4rem 2rem 2rem;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-column h3 {
      font-family: 'Poppins', sans-serif;
      color: #3A9B7F;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #636E72;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #3A9B7F;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #3A9B7F;
      font-size: 1.2rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-icon:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #DFE6E9;
      color: #636E72;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      overflow-y: auto;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 20px;
      max-width: 500px;
      width: 100%;
      padding: 3rem;
      position: relative;
      animation: slideUp 0.3s ease;
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      font-size: 2rem;
      color: #636E72;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .modal-close:hover {
      color: #3A9B7F;
    }

    .modal-content h2 {
      font-family: 'Poppins', sans-serif;
      color: #3A9B7F;
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: #2D3436;
      font-weight: 600;
    }

    .form-group input {
      width: 100%;
      padding: 1rem;
      border: 2px solid #E9ECEF;
      border-radius: 10px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
      outline: none;
    }

    .form-group input:focus {
      border-color: #3A9B7F;
    }

    .form-submit {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(135deg, #3A9B7F 0%, #2C7A63 100%);
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(58, 155, 127, 0.3);
    }

    .form-footer {
      text-align: center;
      margin-top: 1.5rem;
      color: #636E72;
    }

    .form-footer a {
      color: #3A9B7F;
      text-decoration: none;
      font-weight: 600;
    }

    .form-footer a:hover {
      text-decoration: underline;
    }

    /* Recipe Quick View Modal */
    .recipe-modal-content {
      max-width: 800px;
      max-height: 90%;
      overflow-y: auto;
    }

    .recipe-modal-header {
      margin-bottom: 2rem;
    }

    .recipe-modal-header h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    .recipe-modal-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .recipe-section {
      margin-bottom: 2rem;
    }

    .recipe-section h3 {
      font-family: 'Poppins', sans-serif;
      color: #3A9B7F;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .ingredients-list, .instructions-list {
      list-style: none;
      padding-left: 0;
    }

    .ingredients-list li {
      padding: 0.8rem;
      background: #F8F9FA;
      margin-bottom: 0.5rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .ingredients-list li::before {
      content: '✓';
      color: #3A9B7F;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .instructions-list {
      counter-reset: step-counter;
    }

    .instructions-list li {
      padding: 1rem;
      background: #F8F9FA;
      margin-bottom: 1rem;
      border-radius: 8px;
      counter-increment: step-counter;
      position: relative;
      padding-left: 3.5rem;
    }

    .instructions-list li::before {
      content: counter(step-counter);
      position: absolute;
      left: 1rem;
      top: 1rem;
      background: #3A9B7F;
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    .nutrition-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
    }

    .nutrition-item {
      background: #F8F9FA;
      padding: 1rem;
      border-radius: 10px;
      text-align: center;
    }

    .nutrition-item strong {
      display: block;
      color: #3A9B7F;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    /* Content Pages */
    .content-page {
      display: none;
      padding: 8rem 2rem 5rem;
      max-width: 1000px;
      margin: 0 auto;
      min-height: 80vh;
    }

    .content-page.active {
      display: block;
    }

    .content-page h1 {
      font-family: 'Poppins', sans-serif;
      color: #3A9B7F;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      margin-bottom: 2rem;
    }

    .content-page h2 {
      font-family: 'Poppins', sans-serif;
      color: #2D3436;
      font-size: 2rem;
      margin-top: 3rem;
      margin-bottom: 1rem;
    }

    .content-page h3 {
      font-family: 'Poppins', sans-serif;
      color: #3A9B7F;
      font-size: 1.5rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .content-page p {
      color: #636E72;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .content-page ul, .content-page ol {
      color: #636E72;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      margin-left: 2rem;
    }

    .content-page li {
      margin-bottom: 0.8rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .team-member {
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .team-avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, #3A9B7F 0%, #FFB74D 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }

    .team-member h3 {
      margin-top: 0;
      color: #3A9B7F;
    }

    .team-member .role {
      color: #FFB74D;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .contact-form-container {
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      margin-top: 3rem;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .contact-item {
      text-align: center;
      padding: 2rem;
      background: #F8F9FA;
      border-radius: 15px;
    }

    .contact-item-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .contact-item h3 {
      margin-top: 0;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.5rem;
      background: #3A9B7F;
      color: white;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-bottom: 2rem;
    }

    .back-btn:hover {
      transform: translateX(-5px);
      box-shadow: 0 5px 20px rgba(58, 155, 127, 0.3);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideUp {
      from {
        transform: translateY(50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
      }

      .nav-links.active {
        left: 0;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-buttons {
        justify-content: center;
      }

      .newsletter-form {
        flex-direction: column;
      }
    }

    @media (max-width: 640px) {
      .hero-food-grid {
        grid-template-columns: 1fr;
      }

      .categories-grid {
        grid-template-columns: 1fr;
      }

      .recipes-grid {
        grid-template-columns: 1fr;
      }

      .modal-content {
        padding: 2rem;
      }

      .auth-buttons {
        flex-direction: column;
        width: 100%;
      }

      .btn-login, .btn-signup {
        width: 100%;
      }
    }
  