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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #333;
    padding: 20px 0;
    color: #fff;
}

.logo {
    float: left;
    font-size: 24px;
    font-weight: 600;
}

nav ul {
    list-style: none;
    float: right;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    height: 400px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero .btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #e8491d;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
}

.products {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 18px;
    color: #e8491d;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline-block;
    margin-right: 15px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}



* {
    margin: 0;
    box-sizing: border-box;
  }
  
  @font-face {
    font-family: Satoshi;
    src: url(Satoshi-Variable.ttf);
  }
  
  :root {
    --highlight-color: #8cc63e;
    --primary-color: #404040;
    --secondary-color: #f1f1f1;
  }
  
  html {
    font-size: calc(16px + 0.5vmax);
    font-family: Satoshi, Arial, Helvetica, sans-serif;
    line-height: 1.5;
  }
  
  
  
 
  
  section.whyus
  {
    margin: 1rem;
    padding: 2rem;
  
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  section.whyus {
    background-image: url(shoes.jpg);
    background-size: cover;
    background-color: var(--primary-color);
    color: var(--secondary-color);
  
    aspect-ratio: 16 / 9;
  
    align-items: end;
  }
  
  section.whyus h2 {
    text-wrap: balance;
    grid-column: 2;
  }
  
 
  
  @media (max-width: 720px) {
    
  
    
    
    section.whyus {
      margin: 1rem;
      padding: 1rem;
  
      grid-template-columns: 1fr;
      gap: 1rem 0;
      background-image: url(1.jpg);
    }
  }