body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff7fa;
    margin: 0;
    padding: 0;
    color: #333;
}

header, .navbar {
    background: #fff;
    color: #e75480;
    box-shadow: 0 2px 8px rgba(231,84,128,0.04);
}

.navbar-brand {
    font-weight: 700;
    color: #e75480 !important;
    font-size: 1.7rem;
}

.nav-link {
    color: #e75480 !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #b81c1c !important;
}

.btn-pink {
    background: #e75480;
    color: #fff;
    border: none;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(231,84,128,0.08);
}
.btn-pink:hover {
    background: #b81c1c;
    color: #fff;
}

/* Notification Banner */
#notification-banner {
    font-size: 1.05em;
    background: #fffbe7 !important;
    color: #b81c1c !important;
    border-bottom: 1px solid #ffeaea;
    animation: fadeInDown 1s;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Search filter section */
section.p-4.rounded-3 {
    box-shadow: 0 2px 8px rgba(231,84,128,0.07);
    animation: fadeIn 1.2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Featured Profiles */
.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.4,2,.3,1);
}
.card:hover .card-img-top {
    transform: scale(1.05) rotate(-2deg);
}
.card {
    border-radius: 18px;
    transition: box-shadow 0.3s;
}
.card:hover {
    box-shadow: 0 4px 24px rgba(231,84,128,0.13);
}

/* .color-animate class removed */
  background: linear-gradient(90deg, #e75480, #a259e7, #59c7f3, #e75480);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: colorFlow 3s linear infinite;
}

/* @keyframes colorFlow removed */
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Statistics area */
section.bg-white.rounded-3 {
    background: #fff;
    border: 1px solid #ffeaea;
    box-shadow: 0 2px 8px rgba(231,84,128,0.04);
    margin-bottom: 2rem;
}

/* Step-by-step guide */
section.mb-5 .row.text-center img {
    background: #fff0f5;
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(231,84,128,0.07);
    margin-bottom: 10px;
    transition: box-shadow 0.3s;
}
section.mb-5 .row.text-center img:hover {
    box-shadow: 0 4px 16px rgba(231,84,128,0.18);
}

/* Success stories */
.card-title {
    color: #e75480;
    font-weight: 600;
}
.card-text {
    color: #333;
    font-size: 1.02em;
}

/* App download buttons */
.btn-light.border img {
    transition: transform 0.3s;
}
.btn-light.border:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #fff;
    color: #b81c1c;
    padding: 30px 0 10px 0;
    border-top: 1px solid #ffeaea;
    font-size: 1.08em;
    margin-top: 2rem;
}
footer a {
    color: #e75480;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: #b81c1c;
    text-decoration: underline;
}

/* Need Help form */
footer input, footer textarea {
    border: 1px solid #ffeaea;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 1em;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .navbar-brand { font-size: 1.2rem; }
    .card-img-top { height: 140px; }
    section.bg-white.rounded-3 { flex-direction: column !important; }
    section.bg-white.rounded-3 > div { margin-bottom: 20px; }
}
