body{
  margin:0;
  font-family:'Montserrat',sans-serif;
  background:#ffffff;
  color:#1a1a1a;
  line-height:1.7;
}

header{
  background:#c8102e;
  color:#fff;
  padding:18px 0;
}

.container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:18px;
  font-weight:600;
  font-size:14px;
}

.hero{
  background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  height:85vh;
  display:flex;
  align-items:center;
  color:#fff;
}

.hero-content{
  max-width:850px;
}

.hero h1{
  font-size:46px;
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  max-width:750px;
}

.button{
  display:inline-block;
  background:#ffffff;
  color:#1a1a1a;
  padding:12px 26px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  margin-top:25px;
}

section{
  padding:80px 0;
}

h2{
  color:#111;
  margin-bottom:30px;
  font-size:30px;
}

.alt-section{
  background:#f4f6f9;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card{
  background:#fff;
  padding:28px;
  border-radius:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}

.card img{
  width:100%;
  border-radius:10px;
  margin-bottom:15px;
}

.analysis-box{
  background:#eef2f7;
  padding:25px;
  border-radius:10px;
  margin-bottom:25px;
}

.feedback-form input,
.feedback-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:18px;
  border-radius:8px;
  border:1px solid #ccc;
  font-family:inherit;
}

.feedback-form button{
  background:#1a1a1a;
  color:#fff;
  padding:14px 22px;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
}

footer{
  background:#f0f0f0;
  padding:50px 0;
  font-size:14px;
  color:#444;
}

.disclaimer{
  font-size:12px;
  margin-top:20px;
  color:#666;
}
