/* RDP Compact Header - Make header content more compact and move it up */

/* Reduce padding-top to move content up */
.header-section .first-col {
  padding-top: 50px !important; /* Reduced further */
  padding-bottom: 30px !important; /* Reduced further */
}

/* Make the hero title more compact */
.rdp-hero-title {
  font-size: 1.75rem !important; /* Reduced further */
  line-height: 1.25 !important; /* Tighter line height */
  margin-bottom: 8px !important; /* Reduced spacing */
  font-weight: 600 !important;
}

/* Make the subtitle more compact */
.rdp-hero-subtitle {
  font-size: 1.2rem !important; /* Reduced further */
  line-height: 1.25 !important; /* Tighter line height */
  margin-bottom: 10px !important; /* Reduced spacing */
  font-weight: 500 !important;
}

/* Make the description more compact */
.rdp-hero-description {
  font-size: 0.95rem !important; /* Reduced further */
  line-height: 1.4 !important; /* Tighter line height */
  margin-bottom: 0 !important; /* Remove bottom margin */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .header-section .first-col {
    padding-top: 30px !important;
    padding-bottom: 20px !important;
  }
  
  .rdp-hero-title {
    font-size: 1.4rem !important;
    margin-bottom: 6px !important;
  }
  
  .rdp-hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }
  
  .rdp-hero-description {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 575.98px) {
  .header-section .first-col {
    padding-top: 25px !important;
    padding-bottom: 15px !important;
  }
  
  .rdp-hero-title {
    font-size: 1.2rem !important;
    margin-bottom: 5px !important;
  }
  
  .rdp-hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }
  
  .rdp-hero-description {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
  }
}
