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

  /* Header */
  header {
      padding: 1.5rem 0;
      position: fixed;
      width: 100%;
      background-color: var(--beige);
      z-index: 100;
      transition: all 0.3s ease;
  }

  header.scrolled {
      padding: 1rem 0;
      background-color: rgba(248, 246, 242, 0.95);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

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

  .logo {
      font-size: 1.8rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      text-decoration: none;
      color: var(--text);
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav li {
      margin-left: 2rem;
  }

  nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 350;
      transition: color 0.3s ease;
      font-size: 0.95rem;
  }

  nav a:hover {
      color: var(--light-text);
  }

  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text);
  }

  /* Hero Section */
  .sell-hero {
      padding: 12rem 0 6rem;
      text-align: center;
      background: linear-gradient(135deg, var(--beige) 0%, var(--light-beige) 100%);
  }

  h1 {
      font-size: 3.5rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
  }

  h2 {
      font-size: 2.5rem;
      font-weight: 400;
      margin-bottom: 2rem;
      letter-spacing: -0.01em;
  }

  h3 {
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
  }

  p {
      color: var(--light-text);
      margin-bottom: 1.5rem;
      font-weight: 350;
      font-size: 1.1rem;
  }

  .hero-subtitle {
      font-size: 1.3rem;
      max-width: 600px;
      margin: 0 auto;
  }

  .btn {
      padding: 0.9rem 2rem;
      border: 1px solid var(--text);
      background: transparent;
      color: var(--text);
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 400;
      text-decoration: none;
      display: inline-block;
  }

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

  .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Benefits Section */
  .benefits-section {
      padding: 6rem 0;
      background-color: var(--white);
  }

  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
  }

  .benefit-card {
      text-align: center;
      padding: 2.5rem 2rem;
      transition: transform 0.3s ease;
  }

  .benefit-card:hover {
      transform: translateY(-5px);
  }

  .benefit-icon {
      width: 70px;
      height: 70px;
      background-color: var(--dark-beige);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.8rem;
      color: var(--text);
  }

  /* Process Section */
  .process-section {
      padding: 6rem 0;
      background-color: var(--light-beige);
  }

  .process-steps {
      display: flex;
      justify-content: space-between;
      margin-top: 3rem;
      position: relative;
  }

  .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background-color: var(--dark-beige);
      z-index: 1;
  }

  .step {
      text-align: center;
      position: relative;
      z-index: 2;
      flex: 1;
  }

  .step-number {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.5rem;
      font-weight: 500;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  /* Requirements Section */
  .requirements-section {
      padding: 6rem 0;
      background-color: var(--white);
  }

  .requirements-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 3rem;
  }

  .requirement-card {
      padding: 2rem;
      background-color: var(--light-beige);
      border-radius: 8px;
  }

  .requirement-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
  }

  .requirement-icon {
      width: 40px;
      height: 40px;
      background-color: var(--dark-beige);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  /* Application Form Section */
  .application-section {
      padding: 6rem 0;
      background-color: var(--light-beige);
  }

  .application-container {
      max-width: 800px;
      margin: 0 auto;
      background-color: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .application-header {
      padding: 3rem;
      text-align: center;
      background: linear-gradient(135deg, var(--beige) 0%, var(--light-beige) 100%);
      border-bottom: 1px solid var(--dark-beige);
  }

  .application-form {
      padding: 3rem;
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--text);
  }

  .form-control {
      width: 100%;
      padding: 0.9rem 1rem;
      border: 1px solid var(--dark-beige);
      border-radius: 4px;
      background-color: var(--white);
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .form-control:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(212, 200, 184, 0.2);
  }

  textarea.form-control {
      min-height: 120px;
      resize: vertical;
  }

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
  }

  .file-upload {
      position: relative;
      display: inline-block;
      width: 100%;
  }

  .file-upload-label {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      border: 2px dashed var(--dark-beige);
      border-radius: 4px;
      background-color: var(--light-beige);
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
  }

  .file-upload-label:hover {
      border-color: var(--accent);
      background-color: rgba(212, 200, 184, 0.1);
  }

  .file-upload-label i {
      margin-right: 0.5rem;
      color: var(--light-text);
  }

  .file-input {
      position: absolute;
      left: -9999px;
  }

  .file-name {
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: var(--light-text);
  }

  .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
  }

  .checkbox-group input {
      margin-top: 0.2rem;
  }

  .checkbox-group label {
      margin-bottom: 0;
      font-weight: normal;
  }

  .btn-full {
      width: 100%;
  }

  .success-message {
      display: none;
      text-align: center;
      padding: 3rem;
  }

  .success-icon {
      font-size: 4rem;
      color: var(--success);
      margin-bottom: 1.5rem;
  }

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

  .faq-content {
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-list {
      margin-top: 2rem;
  }

  .faq-item {
      margin-bottom: 1rem;
      border: 1px solid var(--dark-beige);
      border-radius: 8px;
      overflow: hidden;
  }

  .faq-question {
      padding: 1.5rem;
      background-color: var(--light-beige);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 500;
      transition: background-color 0.3s ease;
  }

  .faq-question:hover {
      background-color: var(--dark-beige);
  }

  .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background-color: var(--white);
  }

  .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 1.5rem;
  }

  .faq-toggle {
      transition: transform 0.3s ease;
  }

  .faq-item.active .faq-toggle {
      transform: rotate(180deg);
  }

  /* Footer */
  footer {
      background-color: var(--white);
      padding: 4rem 0 2rem;
      border-top: 1px solid var(--dark-beige);
  }

  .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 3rem;
      flex-wrap: wrap;
  }

  .footer-logo {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 1rem;
  }

  .footer-links {
      display: flex;
      gap: 3rem;
  }

  .footer-column h4 {
      margin-bottom: 1rem;
      font-weight: 500;
      font-size: 1rem;
  }

  .footer-column ul {
      list-style: none;
  }

  .footer-column li {
      margin-bottom: 0.5rem;
  }

  .footer-column a {
      text-decoration: none;
      color: var(--light-text);
      font-weight: 350;
      transition: color 0.3s ease;
      font-size: 0.9rem;
  }

  .footer-column a:hover {
      color: var(--text);
  }

  .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
  }

  .social-links a {
      color: var(--light-text);
      font-size: 1.2rem;
      transition: color 0.3s ease;
  }

  .social-links a:hover {
      color: var(--text);
  }

  .copyright {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid var(--dark-beige);
      color: var(--light-text);
      font-size: 0.9rem;
  }

  /* Responsive */
  @media (max-width: 968px) {
      h1 {
          font-size: 2.8rem;
      }

      h2 {
          font-size: 2.2rem;
      }

      .benefits-grid,
      .requirements-grid {
          grid-template-columns: 1fr;
      }

      .process-steps {
          flex-direction: column;
          gap: 2rem;
      }

      .process-steps::before {
          display: none;
      }

      .form-row {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 768px) {
      nav ul {
          display: none;
      }

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

      .footer-content {
          flex-direction: column;
          gap: 2rem;
      }

      .footer-links {
          width: 100%;
          justify-content: space-between;
      }
  }

  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .fade-in {
      animation: fadeInUp 0.8s ease forwards;
  }