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

    body {
      background-color: #b89fcd;
      color: #333;
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
    }

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

    /* Header Styles */
    header {
      background-color: #b89fcd;
      padding: 15px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

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

    .logo-image {
    height: 40px;
    }

    /*.logo {
      font-family: 'Poppins', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #333;
    }*/

    .login-btn {
      background-color: #ffff56;
      border: none;
      padding: 12px 24px;
      font-weight: 600;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .login-btn:hover {
      background-color: #f0f046;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255,255,86,0.4);
    }

    /* Hero Section Styles */
    .hero-section {
      padding: 40px 0;
      margin-bottom: 20px;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero-image {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      object-fit: cover;
      aspect-ratio: 4/3;
    }

    .hero-cta {
      background: linear-gradient(135deg, #b89fcd 0%, #a088bd 100%);
      border: 3px solid #90fca7;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .hero-cta h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 25px;
      color: #333;
      text-align: center;
    }

    .cta-button {
      background-color: #ffff56;
      border: none;
      padding: 15px 30px;
      font-weight: 600;
      border-radius: 25px;
      cursor: pointer;
      width: 100%;
      margin-bottom: 20px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background-color: #f0f046;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255,255,86,0.4);
    }

    .filter-buttons {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .filter-btn {
      background-color: #ffff56;
      border: none;
      padding: 12px 8px;
      font-weight: 500;
      border-radius: 20px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .filter-btn:hover {
      background-color: #f0f046;
      transform: translateY(-1px);
    }

    /* Section Titles */
    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 600;
      text-align: center;
      margin: 40px 0 30px;
      color: #333;
    }

    /* Cards Grid */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    /* Card Styles */
    .card {
      background-color: #ffff56;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      border-color: #90fca7;
    }

    .card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      background-color: #f0f0f0;
    }

    .card-content {
      padding: 20px;
    }

    .card-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }

    .card-price {
      font-size: 1.1rem;
      font-weight: 600;
      color: #2c7a2c;
      margin-bottom: 8px;
    }

    .card-info {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .card-description {
      font-size: 0.85rem;
      color: #666;
      margin: 12px 0;
      line-height: 1.4;
    }

    .card-button {
      background-color: #b89fcd;
      border: none;
      color: white;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: 500;
      border-radius: 20px;
      cursor: pointer;
      width: 100%;
      transition: all 0.3s ease;
    }

    .card-button:hover {
      background-color: #a088bd;
      transform: translateY(-2px);
    }

    /* Placeholder Card */
    .placeholder-card {
      background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
      border: 2px dashed #ccc;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px;
      min-height: 350px;
    }

    .placeholder-card i {
      font-size: 3rem;
      color: #ccc;
      margin-bottom: 15px;
    }

    .placeholder-card h3 {
      color: #999;
      margin-bottom: 10px;
      font-family: 'Poppins', sans-serif;
    }

    .placeholder-card p {
      color: #bbb;
      font-size: 0.9rem;
    }

    /* Footer Styles */
    footer {
      background: linear-gradient(135deg, #a088bd 0%, #8f77ac 100%);
      margin-top: 60px;
      padding: 40px 0 20px;
      text-align: center;
      color: white;
    }

    .footer-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .security-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background-color: rgba(255,255,255,0.1);
      padding: 10px 15px;
      border-radius: 10px;
    }

    .security-icon {
      color: #90fca7;
      font-size: 1.5rem;
    }

    .footer-text {
      flex: 1;
      min-width: 300px;
      font-size: 1rem;
      line-height: 1.5;
    }

    .footer-cta-btn {
      background-color: #ffff56;
      color: #333;
      border: none;
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .footer-cta-btn:hover {
      background-color: #f0f046;
      transform: translateY(-2px);
    }

    .copyright {
      font-size: 0.9rem;
      opacity: 0.8;
      margin-top: 20px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .hero-cta h1 {
        font-size: 1.5rem;
      }

      .filter-buttons {
        grid-template-columns: 1fr;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

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

      .footer-content {
        flex-direction: column;
        gap: 20px;
      }

      .footer-text {
        min-width: auto;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 15px;
      }

      .hero-cta {
        padding: 20px;
      }

      .hero-cta h1 {
        font-size: 1.3rem;
      }

      .card-content {
        padding: 15px;
      }
    }

    /* Animation for smooth transitions */
    .fade-in {
      animation: fadeIn 0.6s ease-in;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
