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

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
}

header {
  background-color: #4c2b80;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}

.icon-container {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  width: 100%;
}
.menu-icon img, .profile-icon img {
  height: auto;
  max-width: 40px;
  cursor: pointer;
}

.menu-icon{
  margin-right: 86rem;
}

section {
  padding: 20px;
  text-align: center;
}

.intro {
  color: white;
  padding: 30px;
}

.orange-line{
  width: 100%;
  height: 23px;
  background-color: #ff6d4c;
  position: relative;
  margin: 10px 0;
  z-index: -1;
  top: -156px;
  border-radius: 12px;
}
.intro .logo {
  margin: -20px auto 10px;
  max-width: 100%;
  height: auto;
}

.how-it-works, .tracking, .opportunity {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.black-line{
  width: 90%;
  height: 5px;
  background-color: black;
  position: relative;
  margin: 10px auto;
  z-index: 1;
  border-radius: 12px;
  top: -30px;
  }
  
.counter {
  border: 2px solid red;
  color: red;
  padding: 20px;
  text-align: center;
  background-color: transparent;
  margin: 20px auto;
  width: 300px;
  
}

h1, h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}


p {
  font-size: 1rem;
  margin: 15px 0;
}

img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

footer {
  background-color: #4c2b80;
  color: white;
  padding: 15px;
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
}

/* Media Queries for responsiveness */
* {
  box-sizing: border-box; 
}

/* for mobile phone */
@media only screen and (min-width: 600px) and (max-width: 768px){
  .menu-icon{
    margin-right: 8rem;
  }

  .orange-line{
    top: -176px;
  }
}

@media only screen and (min-width: 992px){
/* for desktop */
.menu-icon, .profile-icon{
  cursor: pointer;
}
.menu-icon{
  margin-right: 85rem;
}
.orange-line{
  top: -154px;
}
}