.hero {
  background: url('images/whyworkwithus.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position:relative;
  /* background-attachment: fixed; */
  
}

.hero-overlay {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}


/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 250px;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 200px;
    padding: 0 5px;
  }

  .hero h1 {
    font-size: 22px;
  }
}

/* General Styling for Our Story Section */
.ourstry {
    margin-top: 50px;
    margin-left: 50px;
    background-color: #f9f9f9; /* Light background color for contrast */
    padding: 20px; /* Padding for some space around the content */
    border-radius: 8px; /* Rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: Arial, sans-serif; /* Clean and modern font */
    color: #333; /* Dark text color for readability */
}

/* Heading Styling */
.ourstry h2 {
    font-size: 2em; /* Larger font size for main heading */
    margin-bottom: 10px; /* Space below the heading */
    color: #333; /* Primary color for headings */
}

.ourstry h3, .ourstry h4 {
    margin-top: 30px;
    font-size: 1.5em; /* Slightly smaller than main heading */
    margin-bottom: 10px; /* Space below the sub-headings */
    color: #333; /* Primary color for sub-headings */
}

.ourstry h3{
    margin-top: 60px;
}
/* Paragraph Styling */
.ourstry p {
    font-size: 1.1em; /* Standard font size for paragraphs */
    line-height: 1.8; /* Increased line height for better readability */
    margin-bottom: 15px; /* Space below paragraphs */
    color: #666;
}

/* List Styling */
.ourstry ul {
    list-style-type: disc; /* Disc bullets for list items */
    margin-left: 20px; /* Indent list from the left */
    margin-bottom: 20px; /* Space below the list */
}

.ourstry li {
    margin-bottom: 10px; /* Space below each list item */
    line-height: 1.8; /* Increased line height for better readability */
    font-size: 1em;
}

/* Strong Tag Styling within List */
.ourstry li strong {
    font-size: 1.2em;
    color: #666; /* Primary color for emphasis */
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .ourstry {
        padding: 15px; /* Reduced padding for smaller screens */
        margin: 20px; /* Reduced margin */
    }

    .ourstry h2 {
        font-size: 1.8em; /* Smaller font size for headings */
    }

    .ourstry h3, .ourstry h4 {
        font-size: 1.3em; /* Slightly smaller font size for sub-headings */
    }

    .ourstry p {
        font-size: 1em; /* Smaller font size for paragraphs */
    }

    .ourstry ul {
        margin-left: 15px; /* Reduced margin for list items */
    }
}

@media (max-width: 576px) {
    .ourstry {
        padding: 10px; /* Further reduced padding */
        margin: 10px; /* Further reduced margin */
    }

    .ourstry h2 {
        font-size: 1.6em; /* Further reduced font size for headings */
    }

    .ourstry h3, .ourstry h4 {
        font-size: 1.2em; /* Further reduced font size for sub-headings */
    }

    .ourstry p {
        font-size: 0.9em; /* Further reduced font size for paragraphs */
    }

    .ourstry ul {
        margin-left: 10px; /* Further reduced margin for list items */
    }
}
