.contact-details {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 400px;
  margin: 0 auto;
  padding: 32px 24px;
  text-align: left;
  font-size: 1.1rem;
  color: #222;
}
.contact-details a {
  color: #e75480;
  text-decoration: none;
  font-weight: bold;
}
.contact-details a:hover {
  text-decoration: underline;
}
.contact-form-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}
.contact-logo {
  width: 80px;
  height: auto;
  margin-top: 8px;
  opacity: 0.8;
}
.hero p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f5f7fa;
  color: #222;
}
.hero {
  background: linear-gradient(90deg, #0a2540 0%, #e75480 50%, #007fff 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px 60px 20px;
  position: relative;
}
.hero-logo {
  width: 120px;
  height: auto;
  position: absolute;
  top: 24px;
  right: 32px;
  margin-bottom: 0;
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}
.top-right-logo {
  /* For extra specificity if needed */
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.cta {
  display: inline-block;
  background: #e75480;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.cta:hover {
  background: #0a2540;
  color: #fff;
}
.services {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #e75480;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.service {
  background: #ffe4ef;
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 340px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.service h3 {
  margin-top: 0;
  color: #e75480;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 0;
}
.service {
  background: #e3eaf3;
  border-radius: 12px;
  padding: 30px 24px;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.service h3 {
  margin-top: 0;
  color: #e75480;
}
.about {
  padding: 60px 20px;
  background: #f5f7fa;
  text-align: center;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e75480;
}
.about p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  color: #222;
  line-height: 1.7;
}
.contact {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e75480;
}
.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.contact input, .contact textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.contact button {
  background: #e75480;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact button:hover {
  background: #0a2540;
}
footer {
  background: #0a2540;
  color: #fff;
  padding: 24px 0;
  font-size: 1rem;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.footer-logo {
  width: 40px;
  height: auto;
  opacity: 0.8;
  margin-left: 12px;
}
