*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#f5f7fb;
  color:#111827;
}

/* HEADER */

.header{
  width:100%;
  height:80px;
  background:white;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 80px;

  border-bottom:1px solid #e5e7eb;
}

.logo{
  font-size:32px;
  font-weight:bold;
  color:#2563eb;
}

.nav{
  display:flex;
  gap:30px;
}

.nav a{
  text-decoration:none;
  color:#111827;
  font-weight:600;
}

/* HERO */

.hero{
  width:100%;
  padding:80px 20px;

  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero h1{
  font-size:64px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  color:#6b7280;
  margin-bottom:40px;
}

/* UPLOAD BOX */

.upload-box{
  width:700px;
  max-width:95%;

  background:white;

  border:2px dashed #93c5fd;

  border-radius:20px;

  padding:70px 20px;

  box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

#uploadBtn{
  background:#2563eb;
  color:white;

  border:none;

  padding:18px 40px;

  border-radius:12px;

  font-size:20px;

  cursor:pointer;

  margin-bottom:20px;
}

/* BEFORE AFTER */

.before-after{
  width:100%;
  display:flex;
  justify-content:center;

  padding:80px 20px;
}

.before-after img{
  width:1000px;
  max-width:95%;

  border-radius:20px;
}

/* FEATURES */

.features{
  width:100%;

  display:flex;
  justify-content:center;
  gap:30px;

  padding:50px 20px;

  flex-wrap:wrap;
}

.feature-card{
  width:300px;

  background:white;

  padding:40px 30px;

  border-radius:20px;

  text-align:center;

  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.feature-card h3{
  margin-bottom:15px;
}

/* FOOTER */

.footer{
  width:100%;

  padding:40px 20px;

  background:white;

  text-align:center;

  margin-top:60px;

  border-top:1px solid #e5e7eb;
}
/* ABOUT PAGE */

.about-page{
  width:100%;
  padding:100px 20px;
}

.about-container{
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.about-container h1{
  font-size:60px;
  margin-bottom:30px;
}

.about-container p{
  font-size:20px;
  color:#6b7280;
  line-height:1.8;
  margin-bottom:20px;
}

.about-stats{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:60px;
  flex-wrap:wrap;
}

.stat-card{
  width:250px;
  background:white;
  padding:40px 20px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.stat-card h2{
  font-size:42px;
  color:#2563eb;
  margin-bottom:10px;
}

/* CONTACT PAGE */

.contact-page{
  width:100%;
  padding:100px 20px;
}

.contact-container{
  max-width:800px;
  margin:auto;
  text-align:center;
}

.contact-container h1{
  font-size:60px;
  margin-bottom:20px;
}

.contact-container p{
  color:#6b7280;
  margin-bottom:40px;
  font-size:20px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:20px;

  border:none;

  border-radius:15px;

  background:white;

  font-size:18px;

  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.contact-form textarea{
  height:200px;
  resize:none;
}

.contact-form button{
  background:#2563eb;
  color:white;

  border:none;

  padding:18px;

  border-radius:15px;

  font-size:18px;

  cursor:pointer;
}
/* FAQ SECTION */

.faq-section{
  width:100%;
  padding:100px 20px;
}

.faq-section h2{
  text-align:center;
  font-size:52px;
  margin-bottom:60px;
}

.faq-container{
  max-width:1000px;
  margin:auto;

  display:flex;
  flex-direction:column;
  gap:25px;
}

.faq-item{
  background:white;

  padding:35px;

  border-radius:20px;

  box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

.faq-item h3{
  margin-bottom:15px;
  font-size:24px;
}

.faq-item p{
  color:#6b7280;
  line-height:1.8;
}

/* FOOTER */

.footer-links{
  display:flex;
  justify-content:center;
  gap:30px;

  margin-bottom:20px;

  flex-wrap:wrap;
}

.footer-links a{
  text-decoration:none;
  color:#6b7280;
}

/* RESPONSIVE */

@media(max-width:768px){

  .hero h1{
    font-size:42px;
  }

  .header{
    padding:0 20px;
  }

  .nav{
    gap:15px;
  }

  .faq-section h2,
  .about-container h1,
  .contact-container h1{
    font-size:38px;
  }

}
/* UPLOAD BUTTON */

.upload-btn{
  display:inline-block;

  background:#2563eb;
  color:white;

  padding:18px 40px;

  border-radius:12px;

  font-size:20px;

  cursor:pointer;

  margin-bottom:20px;

  transition:0.3s;
}

.upload-btn:hover{
  background:#1d4ed8;
}

/* RESULT IMAGE */

.result-image{
  max-width:350px;

  border-radius:20px;

  margin-top:25px;

  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* DOWNLOAD BUTTON */

.download-btn{
  display:inline-block;

  margin-top:20px;

  padding:14px 30px;

  background:#2563eb;

  color:white;

  text-decoration:none;

  border-radius:12px;

  font-weight:bold;

  transition:0.3s;
}

.download-btn:hover{
  background:#1d4ed8;
}
.result-image{
  max-width:300px;
  margin-top:20px;
  display:block;
  margin-left:auto;
  margin-right:auto;
}

.download-btn{
  display:inline-block;
  margin-top:20px;
  background:#2563eb;
  color:white;
  padding:15px 30px;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
}