
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f8fc;
  color: #222;
}
.navbar {
  background-color: #e9f1fb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #0057a3;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  text-decoration: none;
  color: #0057a3;
  font-weight: 500;
}
.download-btn {
  background-color: #0057a3;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 2rem;
  gap: 2rem;
}
.hero-text {
  flex: 1;
}
.hero-photo {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-placeholder {
  width: 250px;
  height: 250px;
  background-color: #cce5ff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #0057a3;
}
.badge-top, .badge-bottom {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 0.9rem;
}
.badge-top {
  top: -10px;
  right: 20px;
}
.badge-bottom {
  bottom: -10px;
  left: 20px;
}
.badge {
  background-color: #d0eaff;
  color: #0057a3;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
}
h2 {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 1rem;
}
.contact-icons span {
  display: block;
  margin: 0.3rem 0;
}
.cta-buttons {
  margin-top: 1.5rem;
}
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  margin-right: 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.btn-primary {
  background-color: #0057a3;
  color: white;
}
.btn-outline {
  border: 2px solid #0057a3;
  color: #0057a3;
}
