.body2-container{
    background-color: #f6f6f6;
}



/* Container styling */
.body2-container {
    overflow-x: hidden;
    max-width: 100%;
    margin: 20px auto;
}


.body2-container-wh{
        background-color: white;

 overflow-x: hidden;
    max-width: 100%;
    margin: 20px auto;
}

/* Hero section styling */
.hero-body2 {
  display: flex;
  align-items: center;      /* Vertically center text + image */
  justify-content: space-between;
  gap: 2rem;                /* Space between text and image */
  padding: 2rem;
}

/* Text content styling */
.text-content {
    font-size: medium;
    flex: 1;
    min-width: 300px;
}




.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px; /* space between text and image */
}

.text-content-2 {
  flex: 1;
  margin-left: 5%;
  min-width: 300px;
  max-width: 40%; /* keeps text from stretching too far */
}


/* Image content styling */
.image-content {
    flex: 1;
    height: 30%;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}
.image-content img {
    max-width: 100%;   /* ✅ Prevents it from exceeding container width */
    height: auto;      /* ✅ Keeps aspect ratio */
    display: block;    /* ✅ Removes extra space below inline images */
    border-radius: 8px; /* Optional, for rounded edges */
}


.image-content-2 {
  flex-shrink: 0; /* ✅ Prevents the image from shrinking */
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.image-content-2 img {
  max-width: 400px; /* ✅ Fixed max size, independent of text */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.job-post-centered{
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
/* 
/* Typography styling */
.hero-body2 h1 {
    font-size: 400%;       /* Large font size */
    font-weight: 700;      /* Bold */
    line-height: 1.2;      /* Spacing between lines */
    margin: 0 0 40px 0;    /* bottom margin to push paragraph lower */
    color: #000;           /* Black text */
    font-family: "Wicklow", Georgia, Garamond, Times, serif; /* Classic serif style */
  }

.pharagraph-text2 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.6;
}

/* Button styling */
.contact-button {
    display: inline-block;
    background: #063e85;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-size: large;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    max-width: 150px;
}

.contact-button-large {
    display: inline-block;
    background: #063e85;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 140%;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    max-width: 400px;
}


.contact-button-medium {
    display: inline-block;
    background: #063e85;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 140%;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    max-width: 200px;}

.contact-button-Xlarge {
    display: inline-block;
    background: #063e85;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 140%;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    max-width: 650px;
}


.contact-button-medium:hover {
background: black;
    color: #1a3a6c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 108, 0.2);
}

.button-div-center {
    display: flex;
    justify-content: left;  /* centers horizontally */
    margin-top: 20px;
    margin-left: 77px;
  }


  
.contact-button-Xlarge:hover {
    background: black;
    color: #1a3a6c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 108, 0.2);
}

.contact-button-large:hover {
    background: black;
    color: #1a3a6c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 108, 0.2);
}

.contact-button:hover {
    background: black;
    color: #1a3a6c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 108, 0.2);
}

/* Award badge styling */
.award-badge {
    display: inline-block;
    background: #e8f4ff;
    color: #1a3a6c;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Separator styling */
.separator {
    height: 3px;
    width: 60px;
    background: #1a3a6c;
    margin: 25px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .separator {
        margin: 25px auto;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .text-content, .image-content {
        min-width: 100%;
    }
}





        