* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color:#fac5a6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    align-items: center;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 50px;
    margin-right: 15px;
  }
  
  h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 24px;
    margin: 0;
    font-weight: 800;
  }
  
  main {
    flex: 1;
    padding: 30px 20px;
  }
  
  .about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  
  .about-content {
    display: flex;
    gap: 20px;
  }
  
  .text-content {
    flex: 2;
  }
  
  .image-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .shopping-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .about-section h2 {
    color: #161616;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
    gap: 10px;
  }
  
  .about-section h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
  }
  
  .about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
  }


  
  
  
  
  
  
  