.about-plyfix {
    padding: 20px;
    background-color: #f5f5f5; /* Example background color */
    /* Add more styling as needed */
    margin-top: 20px; /* Add some top margin to separate it from the previous section */
    border-top: 2px solid #ccc; /* Add a border line at the top for visual separation */
}

.about-plyfix h2 {
    color: #333; /* Example heading color */
    /* More styling for the heading */
}

.about-plyfix p {
    color: #666; /* Example text color */
    /* More styling for the paragraph */
}
.about-plyfix {
    text-align: center; /* Center the content horizontally */
    margin: 0 auto; /* Center the section within its container */
    max-width: 800px; /* Set a maximum width for the content */
}
.take-control {
    background-color: black;
    color: white;
    padding: 20px; /* Adjust the horizontal padding as needed */
    position: relative; /* Enable relative positioning for the container */
}

.take-control-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    text-align: center; /* Center text within the container */
}

.take-control-text {
    flex: 1; /* Expand to take available space */
    padding-right: 20px; /* Add spacing between text and image */
}

.take-control-image-container {
    position: absolute; /* Enable absolute positioning for the image container */
    right: 0.75in; /* Move the image container 3/4 of an inch from the right side */
    top: -0.5in; /* Move the image container 1/2 of an inch above the text */
    bottom: -0.5in; /* Move the image container 1/2 of an inch below the text */
}

.take-control-image-container img {
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    height: auto; /* Automatically adjust the height to maintain aspect ratio */
}

.find-jobs {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items at the top */
    padding: 20px; /* Adjust the padding as needed */
}

.find-job {
    flex-basis: calc(33.33% - 10px); /* Adjust the width of find-jobs as needed */
    padding: 10px; /* Add spacing between find-jobs */
    background-color: #f5f5f5; /* Example background color */
    color: #333; /* Example text color */
    display: flex; /* Display feature content in a row */
}

.find-job-icon {
    margin-right: 10px; /* Add spacing between icon and text */
}

.find-job-icon img {
    width: 24px; /* Set the width of the icon image */
    height: 24px; /* Set the height of the icon image */
}

.find-job-details {
    flex-grow: 1; /* Expand to take available space */
}

.find-job h3 {
    /* Styling for feature headings */
}

.find-job p {
    /* Styling for feature paragraphs */
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav-mobile {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#nav-mobile li {
    display: inline;
    margin-left: 20px; /* Adjust the spacing between links as needed */
}

#nav-mobile li:first-child {
    margin-left: 0;
}