/* Global Styles */
:root {
    --primary-color: #e83e8c;
    --secondary-color: #6f42c1;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --danger-color: #dc3545;
    --success-color: #28a745;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 100vw;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    color: #d01b75;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: #fff;
    padding: 20px 0;
    transition: all 0.3s ease;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 0;
}
.navbar-brand img {
    transition: transform 0.3s ease;
    max-height: 80px;
    width: auto;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
.navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}
.navbar-light .navbar-nav .nav-link {
    color: #444;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--primary-color);
    background-color: rgba(232, 62, 140, 0.05);
}

/* Dropdown menu styles */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
    z-index: 1021;
}
.dropdown-menu.show {
    display: block !important;
}
.dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-weight: 400;
    color: #212529;
    background-color: transparent;
    border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(232, 62, 140, 0.05);
    color: var(--primary-color);
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 4px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #d01b75;
    border-color: #d01b75;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(232, 62, 140, 0.3);
}

/* Hero Section */
.hero-section {
    background: none !important;
    color: white;
    padding: 5rem 0;
    margin-bottom: 3rem;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-buttons {
    margin-bottom: 2rem;
}
.stats {
    display: flex;
    gap: 2rem;
}
.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Profile Cards with LCP Optimization */
.latest-profiles-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 0 12px;
}

.latest-profiles-row > div {
    width: 320px;
    flex: 0 0 auto;
    min-width: 320px;
    max-width: 380px;
}

/* Modern Profile Card Redesign */
.profile-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  margin-bottom: 2rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  border: none;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.profile-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #e83e8c, #6f42c1);
}

.profile-card-header {
  position: relative;
  width: 100%;
  height: 280px; /* Fixed height for consistency */
  overflow: hidden;
}

.profile-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.profile-card:hover .profile-card-img {
  transform: scale(1.05);
}

.profile-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(232, 62, 140, 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.profile-card-info {
  padding: 1.5rem;
  position: relative;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #2d3748;
  letter-spacing: 0.3px;
}

.profile-location {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Enhanced Personal Information Styling */
.personal-info {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  border: 1px solid #edf2f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Personal Information Section Title */
.personal-information-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c5282;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Standardized font sizes for profile info rows */
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.info-row:last-child {
  border-bottom: none;
}

/* Adjusted font sizes for labels and values in personal information section */
.info-label {
  font-size: 0.9rem; /* Further reduced font size for labels */
  font-weight: 500;
  color: #4a5568;
}

.info-value {
  font-size: 1.4rem; /* Larger font size for values remains unchanged */
  font-weight: 600;
  color: #2d3748;
}

/* Label styling */
.info-label {
  font-weight: 600;
  color: #4a5568;
  width: 45%;
}

/* Value styling */
.info-value,
.status-value,
.marital-status,
.gender-info,
.age-info {
  font-weight: 700;
  color: #2d3748;
  text-align: right;
  width: 55%;
}

/* Specifically for status values */
.status-value {
  font-size: 1.2rem; /* Same size as other text */
  font-weight: 700;
  color: #e83e8c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* For NEVER_MARRIED and similar status values */
.status-value.highlight {
  background: rgba(232, 62, 140, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* Grid layout for key info */
.key-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 15px 0;
}

.key-info .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f7fafc;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.key-info .info-label {
  width: 100%;
  margin-bottom: 4px;
  text-align: center;
}

.key-info .info-value {
  width: 100%;
  text-align: center;
}

/* Make sure all personal info is properly aligned */
.profile-details {
  margin: 15px 0;
}

.profile-detail-item {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-detail-item i {
  color: #e83e8c;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Status values like NEVER_MARRIED */
.status-value {
  font-size: 1.3rem; /* Larger font size for emphasis */
  font-weight: 700;
  color: #e83e8c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Section title for Personal Information */
.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 40px;
  background: #e83e8c;
  border-radius: 3px;
}

/* Age, Gender and other key info */
.key-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.key-info .info-item {
  background: #f0f5fa;
  padding: 10px 15px;
  border-radius: 10px;
  border-left: 3px solid #e83e8c;
}

/* Bold labels for key attributes */
.attribute-label {
  font-size: 1rem;
  font-weight: 700;
  color: #e83e8c;
  margin-right: 8px;
}

.attribute-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
}

/* Button styling */
.profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 1.5rem 1.5rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  gap: 6px;
}

.btn-primary {
  background-color: #e83e8c;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(232, 62, 140, 0.2);
}

.btn-primary:hover {
  background-color: #d01b75;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(232, 62, 140, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #2d3748;
  border: 1.5px solid #cbd5e0;
}

.btn-outline:hover {
  border-color: #a0aec0;
  color: #1a202c;
  background-color: #f7fafc;
  transform: translateY(-2px);
}

.profile-contact-buttons {
  padding: 0 1.5rem;
  margin-bottom: 10px;
}

.contact-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.2rem; /* Increased font size for better visibility */
  transition: all 0.2s ease;
  gap: 8px;
}

.btn-call {
  background-color: #e53e3e;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.2);
}

.btn-call:hover {
  background-color: #c53030;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 62, 62, 0.3);
}

.btn-email {
  background-color: #2b6cb0;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.2);
}

.btn-email:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(43, 108, 176, 0.3);
}

/* For accessibility */
.profile-card a:focus {
  outline: 2px solid #e83e8c;
  outline-offset: 2px;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0;
}
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #ddd;
}
.footer-links a:hover {
    color: white;
}
.social-links i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ddd;
}
.social-links i:hover {
    color: white;
}
.copyright {
    background: #222;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Lazy loading styles for images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
img[loading="lazy"].loaded {
    opacity: 1;
}

/* Accessible call-to-action button */
.call-now {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  font-weight: 500;
  font-size: 0.78em;
  background-color: #B71C1C;
  color: #FFFFFF;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 0.25rem;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44,44,44,0.10);
  cursor: pointer;
}
.call-now:hover, .call-now:focus {
  background-color: #9B0000;
  color: #fff;
  outline: 2px solid #9B0000;
  text-decoration: underline;
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  font-weight: 500;
  font-size: 0.78em;
  color: #B71C1C;
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.2s;
}
.email-link:hover, .email-link:focus {
  color: #9B0000;
  text-decoration: underline;
  outline: 2px solid #9B0000;
}

/* --- Features Section: Professional Look & LCP Optimization --- */
.features-section {
  background: linear-gradient(120deg, #fff 70%, #f8f9fa 100%);
  padding: 3.5rem 0 2.5rem 0;
  margin-bottom: 2.5rem;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(44,44,44,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border: 1.5px solid #f0e6f6;
}
.features-section h2 {
  font-size: 1.35rem; /* Reduced font size */
  font-weight: 800;
  color: #222;
  margin-bottom: 2.2rem;
  text-align: left; /* Align left for consistency */
  letter-spacing: 0.5px;
  padding-left: 18px; /* Add some left padding for visual alignment */
}
.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 0.5rem;
}
.feature-card {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44,44,44,0.08);
  padding: 2.1rem 1.3rem 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #f3e6f9;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(44,44,44,0.16);
  transform: translateY(-6px) scale(1.03);
  border-color: #e83e8c44;
}
.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c5282 0%, #2b6cb0 100%); /* Deep blue gradient for better contrast */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #ffffff; /* Bright white for better visibility */
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(44,82,130,0.18);
  border: 3px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 2;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -2px; right: -2px; bottom: -2px; left: -2px;
  background: linear-gradient(135deg, #2c5282 0%, #3182ce 50%, #4299e1 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,82,130,0.25);
  background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
}

.feature-title {
  font-size: 1.05rem; /* Reduced font size for feature card titles */
  font-weight: 800;
  color: #1a365d; /* Deep blue - easy to read but softer than black */
  margin-bottom: 0.8rem;
  text-align: left;
  letter-spacing: 0.3px;
  line-height: 1.4;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,0.05);
  padding-left: 18px;
}

.feature-desc {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.1rem;
  color: #4a5568; /* Softer dark gray - very readable but not harsh */
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Decorative accent for card top */
.feature-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background: linear-gradient(90deg, #e83e8c 0%, #f8f9fa 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0.13;
}
@media (max-width: 900px) {
  .features-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .feature-card {
    max-width: 100%;
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 767px) {
    .hero-section {
        padding: 3rem 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    .quick-search-box {
        margin-top: 2rem;
    }
}
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-nav .nav-item {
        margin: 0 3px;
    }
    .btn-primary {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    body {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 50px;
    }
    .dropdown-menu {
        min-width: 150px;
    }
    .btn-primary {
        font-size: 0.8rem;
    }
    body {
        font-size: 0.8rem;
    }
}
@media (min-width: 992px) {
    .navbar {
        padding: 25px 0;
    }
    .navbar-brand {
        font-size: 1.8rem;
    }
    .btn-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }
    body {
        font-size: 1.1rem;
    }
}
@media (min-width: 1200px) {
    .container, .form-container, .features-section, .success-stories, .dashboard-section, .quick-search-box {
        max-width: 1140px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .latest-profiles-row {
        gap: 32px;
        justify-content: center;
    }
    .latest-profiles-row > div {
        width: 22%;
        min-width: 220px;
        max-width: 280px;
    }
    .feature-box, .profile-card, .stat-card, .story-card {
        min-width: 220px;
        max-width: 320px;
        width: 100%;
    }
}
@media (min-width: 1366px) and (max-width: 1599px) {
    .container, .form-container, .features-section, .success-stories, .dashboard-section, .quick-search-box {
        max-width: 1000px;
        padding: 0 15px;
    }
    .latest-profiles-row > div {
        width: 22%;
    }
}
@media (min-width: 1600px) {
    .container, .form-container, .features-section, .success-stories, .dashboard-section, .quick-search-box {
        max-width: 1300px;
    }
    .latest-profiles-row > div {
        width: 18%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .container, .form-container, .features-section, .success-stories, .dashboard-section, .quick-search-box {
        max-width: 960px;
    }
    .latest-profiles-row > div {
        width: 30%;
    }
}

/* Footer Responsive Fix for 5 Columns */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.footer-col {
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 22%;
  box-sizing: border-box;
  padding-top: 0 !important;
  margin-top: 0 !important;
  word-break: break-word;
  overflow: visible;
}
.footer-col address, .footer-col ul, .footer-col p, .footer-col li {
  word-break: break-word;
  white-space: normal;
  overflow-wrap: anywhere;
}
@media (max-width: 1400px) {
  .footer-col {
    max-width: 28%;
  }
}
@media (max-width: 1200px) {
  .footer-col {
    max-width: 45%;
    min-width: 200px;
  }
  .footer-row {
    gap: 16px;
  }
}
@media (max-width: 992px) {
  .footer-col {
    max-width: 100%;
    min-width: 180px;
  }
  .footer-row {
    gap: 8px;
  }
}
.footer-col ul li, .footer-col address li {
  word-break: break-word;
  white-space: normal;
}
.footer-col address {
  font-size: 1.1rem;
}
@media (min-width: 601px) and (max-width: 1199px) {
  .container, .form-container, .features-section, .success-stories, .dashboard-section, .quick-search-box {
    max-width: 96vw;
    width: 96vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-section {
    padding: 2.5rem 0;
  }
  .hero-section h1 {
    font-size: 2.1rem;
  }
  .quick-search-box {
    padding: 1.2rem;
  }
  .latest-profiles-row {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .latest-profiles-row > div {
    width: 45%;
    min-width: 220px;
    max-width: 320px;
    margin-bottom: 18px;
  }
  .feature-box, .profile-card, .stat-card, .story-card {
    min-width: 180px;
    max-width: 340px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-row {
    gap: 12px;
  }
  .footer-col {
    max-width: 48%;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .footer-col {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    margin-bottom: 2rem;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .footer-col {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.98rem;
  }
  .footer-links h4 {
    font-size: 1rem;
  }
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  .social-links i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .footer-row {
    gap: 18px;
  }
  .footer-col {
    max-width: 24%;
    min-width: 200px;
    flex: 1 1 200px;
    word-break: break-word;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-row {
    gap: 12px;
  }
  .footer-col {
    max-width: 32%;
    min-width: 180px;
    flex: 1 1 180px;
    word-break: break-word;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .footer-row {
    gap: 20px;
  }
  .footer-col {
    max-width: 20%;
    min-width: 180px;
    flex: 1 1 180px;
    word-break: break-word;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.hero-section .hero-overlay-text a {
    color: #000 !important;
    background-color: #ffcccb !important;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
    .hero-section .hero-overlay-text a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
}

/* Adjusted font size for gender label */
.gender-info {
  font-size: 0.85rem; /* Reduced font size for subtlety */
  font-weight: 600;
  color: #6C63FF;
}

/* Profile card specific adjustments */
.profile-card .profile-info-row span,
.profile-card .profile-info-row .value {
  font-size: 1.08em !important;
  color: #1a237e !important; /* Deep blue for high contrast and readability */
}
