* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #fafcff;
  color: #222;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.navbar {
  background: transparent;
  padding: 32px 0 0 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  display: flex;
  align-items: center;
}
.logo-icon {
  font-size: 1.3rem;
  margin-left: 4px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links li a.active,
.nav-links li a:hover {
  color: #1abc7b;
}
.arrow {
  font-size: 0.9em;
  margin-left: 2px;
}

.nav-btn {
  padding: 12px 28px;
  border-radius: 30px;
  background: #1abc7b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(26, 188, 123, 0.08);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-btn:hover {
  background: #159c63;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  gap: 40px;
}
.hero-content {
  flex: 1.2;
  max-width: 540px;
}
.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 30vw;
  height: 30vw;
  object-fit: cover;
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
  transition: all cubic-bezier(0.19, 1, 0.22, 1)3s;
}

.badge {
  display: inline-block;
  background: #eafaf3;
  color: #1abc7b;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.95rem;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(26, 188, 123, 0.08);
}

h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}
.highlight {
  color: #1abc7b;
}
.subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #1abc7b;
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 188, 123, 0.08);
}
.btn-primary:hover {
  background: #159c63;
}
.btn-outline {
  background: #fff;
  color: #1abc7b;
  border: 2px solid #1abc7b;
}
.btn-outline:hover {
  background: #eafaf3;
}

.rating-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(26, 188, 123, 0.08);
  padding: 12px 24px;
  gap: 12px;
  margin-bottom: 10px;
  width: fit-content;
}
.stars {
  color: #ffb400;
  font-size: 1.2rem;
  margin-right: 6px;
}
.rating-value {
  color: #1abc7b;
  font-weight: 600;
}
.rating-logos img {
  width: 28px;
  margin-left: 8px;
  vertical-align: middle;
}

.emergency-card {
  position: absolute;
  bottom: -32px;
  left: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(26, 188, 123, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  min-width: 210px;
  border: 1.5px solid #eafaf3;
}
.emergency-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f7dada;
}
.emergency-title {
  font-weight: 600;
  font-size: 1rem;
}
.emergency-desc {
  font-size: 0.92rem;
  color: #888;
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }
  .hero-image img {
    width: 270px;
  }
  .emergency-card {
    position: static;
    margin-top: 18px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 12px;
  }
  h1 {
    font-size: 2rem;
  }
  .hero-image img {
    width: 180px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}
