/* Page styling */
*{
margin: 0;
border: 0;
}
body{
  background: white;
  color: black;
  padding: 40px;
}

/* ---------- ALL SECTIONS ---------- */
section{
  padding: 30px 0;
  border-bottom: 1px solid gray; 
  margin-bottom: 10px;  /* line after every section */
}

/* ---------- SECTION 1 LAYOUT ---------- */
.sec1{
  display: flex;
  flex-direction: row;   /* heading → content → sidebox */
  gap: 20px;
}

/* image + sidebox in row */
.sec1 img{
  width: 900px;
  height: 600px;
}

/* wrapper for image + sidebox */
.sec1 img,
.sidebox{
  display: inline-block;
}

/* keep image and sidebox side by side */
.sec1{
  align-items: flex-start;
}

/* ---------- SIDEBOX ---------- */
.sidebox{
  border: 1px solid red;
  padding: 15px;
  margin: 30px;
}

.sidebox ul{
  padding: 0;
}

.sidebox li{
  list-style: none;
  margin: 8px 0;
}

/* ---------- OTHER SECTIONS IMAGES ---------- */
.sec2 img,
.sec3 img,
.sec4 img,
.sec5 img{
  width: 900px;
  height: 600px;
  margin: 15px 0;
}

/* ---------- FOOTER ---------- */
.footer{
  border-bottom: none;
  padding-top: 30px;
}

/* help box */
.help{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.help button{
  padding: 10px 20px;
  border: none;
  background: red;
  color: white;
  cursor: pointer;
}

/* footer list in row */
.list ul{
  display: flex;
  gap: 20px;
  padding: 0;
}

.list li{
  list-style: none;
}

.list a{
  color: white;
  text-decoration: none;
}

/* language dropdown */
.lang{
  margin-top: 20px;
  padding: 8px;
  background: transparent;
  color: red;
  border: 1px solid gray;
}
.footer {
    margin-top: 20px;
  background: linear-gradient(200deg,
    rgb(248, 43, 43) 10%,
    black 100%);
  color: white;
  padding: 30px;
}
.footer .help button{
    background-color: white;
    color: black;
    border-radius: 10px;
}