* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  .header-box {
    background-color: #eb3508;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    color: white;
    height: 70px; /* Increased height */
    text-align: left;
  }
  
  .left-side, .right-side {
    flex: 1;
  }
  
  .left-side p {
    font-size: 24px; /* Increased font size for "Mission and Vision" */
  }
  
  .right-side {
    text-align: right;
    word-wrap: break-word; /* Ensure text breaks if necessary */
  }
  
  /* Media Query for smaller screens */
  @media (max-width: 768px) {
    .header-box {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the left */
        height: auto; /* Adjust height to fit content */
    }
  
    .right-side {
        text-align: left;
        margin-top: 10px; /* Add some space between the two sections */
    }
  }

  





  .main-content {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
}

.heading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.heading-text {
    font-size: 24px;
    font-weight: bold;
    color: #8B0000; /* Dark red */
    padding: 0 10px;
    text-align: center;
}

.double-line {
    position: relative;
    flex-grow: 1;
    height: 0; /* The lines will be created using the pseudo-elements */
}

.double-line::before, 
.double-line::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: green;
}

.double-line::before {
    top: -4px; /* Top line */
}

.double-line::after {
    bottom: -4px; /* Bottom line */
}
