@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  .page-container {
    width: 100%;
    background-color: #f5f9f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 10px 0;
  }
  
  /* Header Styles */
  .site-header {
    width: 100%;
    background-color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  
  .site-title {
    color: #2e5a1c;
    font-size: 24px;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-link {
    color: #2e5a1c;
    text-decoration: none;
  }
  
  /* Main Content Styles */
  .main-content {
    max-width: 1258px;
    margin: 10px auto;
    padding: 0 10px;
    flex: 1;
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }
  
  /* Tips Categories Styles */
  .tips-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .category-card {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .category-image {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .category-card:hover .category-image {
    transform: scale(1.05);
  }
  
  .category-title {
    color: #2e5a1c;
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  /* Sidebar Styles */
  .sidebar {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: fit-content;
  }
  
  .quick-tips-section {
    margin-bottom: 30px;
  }
  
  .section-title {
    color: #2e5a1c;
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .section-title i {
    font-size: 20px;
    color: #2e5a1c;
  }
  
  .quick-form {
    margin-bottom: 20px;
  }
  
  .form-select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #2e5a1c;
  }
  
  .form-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 90, 28, 0.2);
  }
  
  .primary-button {
    width: 100%;
    padding: 12px;
    background-color: #2e5a1c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .primary-button:hover {
    background-color: #234615;
  }
  
  /* Newsletter Section Styles */
  .newsletter-section {
    margin-top: 30px;
  }
  
  .newsletter-description {
    margin-bottom: 15px;
  }
  
  .form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #2e5a1c;
  }
  
  .form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 90, 28, 0.2);
  }
  
  /* Detailed Form Styles */
  .detailed-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 30px auto 0;
    position: relative;
    min-height: 300px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 8px;
    padding: 20px;
  }
  
  .form-section {
    position: absolute;
    width: 100%;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
  }
  
  .form-section {
    position: absolute;
    width: 100%;
    transition: all 0.3s ease;
  }
  
  .form-section-title {
    color: #2e5a1c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .form-section-title i {
    font-size: 18px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-label {
    display: block;
    margin-bottom: 10px;
    color: #2e5a1c;
    font-weight: 500;
  }
  
  .form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .next-button,
  .back-button,
  .submit-button {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .next-button,
  .submit-button {
    background-color: #2e5a1c;
    color: white;
    border: none;
  }
  
  .next-button:hover,
  .submit-button:hover {
    background-color: #234615;
  }
  
  .back-button {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
  }
  
  .submit-button {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  .submit-button:hover {
    background-color: #1e3a12;
    transform: translateY(-2px);
  }
  
  /* Footer Styles */
  .site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 0;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  
  .footer-title {
    margin-bottom: 15px;
    color: #2e5a1c;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer-title i {
    font-size: 16px;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-link {
    color: #ffffff;
    text-decoration: none;
  }
  
  /* Form Section Visibility */
  #section-1 {
    opacity: 1;
    transform: translateX(0);
    z-index: 4;
  }
  
  #section-2,
  #section-3,
  #section-4 {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    z-index: 3;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .content-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .main-nav {
      flex-direction: column;
      gap: 15px;
    }
  
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .tips-categories {
      grid-template-columns: 1fr;
    }
  }
  