
.recruiter-hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:  url('../media/recruiter1.png'); 
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    position: relative;
}


.recruiter-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust overlay as needed */
    z-index: -1;
}

.recruiter-hero-content {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-align: center;
}

.recruiter-hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    /* font-family: 'Times New Roman', Times, serif; */
}

.recruiter-hero-content p {
    font-size: 1.5em;
    /* font-family: 'Times New Roman', Times, serif; */
    font-weight: bold;
}


/* Section Styling */
.zenn-recruiter {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Heading Styling */
  .zenn-recruiter h2 {
    color: #2C3E50;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  /* Subheading Styling */
  .zenn-recruiter h3 {
    color: #2C3E50;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  /* Paragraph Styling */
  .zenn-recruiter p {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  /* Highlighted Text */
  .highlight {
    color: #007BFF;
    font-weight: bold;
  }
  
  /* List Styling */
  .zenn-recruiter ul {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0; /* Removes default padding */
  }
  
  .zenn-recruiter ul li {
    display: flex; /* Uses flexbox for alignment */
    align-items: flex-start; /* Aligns items vertically */
    margin-bottom: 15px; /* Adds space between list items */
    padding: 10px; /* Adds padding for better spacing */
    border: 1px solid #ddd; /* Adds a border around each item */
    border-radius: 5px; /* Rounds the corners */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
    font-size: 1.1rem; /* Adjusts font size */
  }
  
  .zenn-recruiter ul li strong.service-point {
    flex-shrink: 0; /* Prevent shrinking of the label */
    width: 200px; /* Fixed width for labels */
    color: #28A745; /* Green color for key services */
    font-weight: bold;
  }
  
  /* Description Styling */
  .zenn-recruiter ul li::marker {
    color: #007BFF; /* Change bullet color */
  }
  