*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

body{
  background:#ffffff;
  color:#333;
  line-height:1.6;
}

/* Header */
header{
  background:#c60000;
  color:#fff;
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.logo{
  font-size:20px;
  font-weight:bold;
}
.logo span{
  display:block;
  font-size:12px;
  color:#ffeaea;
}

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:15px;
  font-size:14px;
}

/* Hero */
.hero{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  padding:40px 20px;
  gap:30px;
}

.hero-img{
  flex:1;
  animation:fadeIn 1.5s ease;
}

.hero-img img{
  width:100%;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.hero-text{
  flex:1;
  animation:slideUp 1.2s ease;
}

.hero-text h1{
  color:#c60000;
  font-size:30px;
}

.hero-text p{
  margin:15px 0;
}

/* Buttons */
.btn{
  display:inline-block;
  background:#c60000;
  color:#fff;
  padding:12px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

.btn.green{
  background:#1e9c5a;
}

/* Sections */
.section{
  padding:60px 20px;
  text-align:center;
}

.section h2{
  color:#c60000;
  margin-bottom:15px;
}

.section.light{
  background:#f8f8f8;
}

.section.highlight{
  background:#ffecec;
}

/* Cards */
.cards{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  justify-content:center;
  margin-top:20px;
}

.card{
  background:#fff;
  padding:20px;
  width:240px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}



/* Footer */
footer{
  background:#c60000;
  color:#fff;
  text-align:center;
  padding:15px;
}

.review-section{
  padding:70px 20px;
  background:linear-gradient(135deg,#fff7e6,#fff);
  display:flex;
  justify-content:center;
}

.review-box{
  max-width:650px;
  text-align:center;
  background:#ffffff;
  padding:40px 30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  animation:fadeUp 1.2s ease;
}

.review-box h2{
  color:#c60000;
  margin-bottom:15px;
  font-size:28px;
}

.review-box p{
  color:#444;
  margin-bottom:25px;
  font-size:16px;
}

.review-btn{
  display:inline-block;
  background:#f4b400; /* Google gold */
  color:#000;
  padding:14px 28px;
  border-radius:40px;
  font-weight:bold;
  text-decoration:none;
  font-size:16px;
  transition:all 0.3s ease;
  box-shadow:0 6px 18px rgba(244,180,0,0.45);
}

.review-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(244,180,0,0.6);
}

.review-note{
  display:block;
  margin-top:15px;
  font-size:13px;
  color:#777;
}

/* Animation */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

/* Mobile */
@media(max-width:600px){
  .review-box h2{
    font-size:22px;
  }
  .review-btn{
    width:100%;
  }
}


/* Animations */
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes slideUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

/* Mobile */
@media(max-width:768px){
  .hero{
    flex-direction:column;
  }
  .hero-text h1{
    font-size:24px;
  }
}
