/* PEARL EHR Hero Section -------------------------------------------------*/
.pearl-hero {
    height: 30vh; /* Adjust height as needed */
    background-color: #2387d1; /* Slightly darker shade of #2ba2ec */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

/* Hero Content */
.pearl-hero-container {
    max-width: 800px;
}

/* Hero Title */
.pearl-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Hero Subtitle */
.pearl-hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .pearl-hero {
        margin-top: 70px;
        height: 50vh; /* Adjust height as needed */
        background-color: #2387d1; /* Slightly darker shade of #2ba2ec */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 4rem;
    }
}



/* PEARL EHR Introduction Section ------------------------------------*/
/* PEARL EHR Introduction Section */
.pearl-intro {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.pearl-intro-container {
    max-width: 900px;
    margin: 0 auto;
}

/* PEARL Logo */
.pearl-logo img {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 15px;
}

/* Title */
.pearl-intro-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Text */
.pearl-intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}



/* EHR Functions & Modules Section ---------------------------------*/
/* EHR Functions & Modules Section ---------------------------------*/
/* EHR Functions & Modules Section ---------------------------------*/
.pearl-functions {
    background-color: rgb(230, 240, 250); 
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.pearl-functions-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.pearl-functions-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Description */
.pearl-functions-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

/* Functions List */
.pearl-functions-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 10px; /* Space between items */
    background: inherit;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* List Items */
.pearl-functions-list div {
    padding: 10px 15px;
    background-color: inherit;
    border-radius: 5px;
    transition: background-color 0.2s;
    cursor: pointer;
    border: 1px solid #b9b9b9;
}

/* Hover Effect */
.pearl-functions-list div:hover {
    background-color: #e0f2ff;
}







/* EHR Benefits & Advantages Section--------------------- */
.pearl-benefits {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.pearl-benefits-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.pearl-benefits-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Description */
.pearl-benefits-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

/* Grid Layout */
.pearl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefit Items */
.pearl-benefit-item {
    background: rgb(230, 240, 250); /* Light blueish background */
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

/* Benefit Icons */
.pearl-benefit-item i {
    font-size: 24px;
    color: #2ba2ec;
}

/* Hover Effect */
.pearl-benefit-item:hover {
    transform: scale(1.05);
}

/* Responsive: One Column on Small Screens */
@media (max-width: 768px) {
    .pearl-benefits-grid {
        grid-template-columns: 1fr;
    }
}



/* EHR Support & Areas Served Section -----------------------------*/
.pearl-support {
    background-color: rgb(230, 240, 250); /* Light blueish-whitesmoke background */
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.pearl-support-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.pearl-support-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Description */
.pearl-support-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

/* Grid Layout */
.pearl-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* Support Items */
.pearl-support-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

/* Icons */
.pearl-support-item i {
    font-size: 24px;
    color: #2ba2ec;
}

/* Hover Effect */
.pearl-support-item:hover {
    transform: scale(1.05);
}

/* Responsive: One Column on Small Screens */
@media (max-width: 768px) {
    .pearl-support-grid {
        grid-template-columns: 1fr;
    }
}



/* EHR Technology Section -----------------------------*/
.pearl-technology {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.pearl-technology-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.pearl-technology-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Description */
.pearl-technology-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

/* Grid Layout */
.pearl-technology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Technology Items */
.pearl-technology-item {
    background: rgb(230, 240, 250); /* Light blueish background */
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

/* Icons */
.pearl-technology-item i {
    font-size: 24px;
    color: #2ba2ec;
}

/* Hover Effect */
.pearl-technology-item:hover {
    transform: scale(1.05);
}

/* Responsive: One Column on Small Screens */
@media (max-width: 768px) {
    .pearl-technology-grid {
        grid-template-columns: 1fr;
    }
}



/* Correctional Health Consulting Section --------------------------*/
.pearl-correctional {
    background-color: rgb(230, 240, 250); /* Light blueish-whitesmoke background */
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.pearl-correctional-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.pearl-correctional-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Description */
.pearl-correctional-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

/* Grid Layout */
.pearl-correctional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Correctional Benefits Items */
.pearl-correctional-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

/* Icons */
.pearl-correctional-item i {
    font-size: 24px;
    color: #2ba2ec;
}

/* Hover Effect */
.pearl-correctional-item:hover {
    transform: scale(1.05);
}

/* Responsive: One Column on Small Screens */
@media (max-width: 768px) {
    .pearl-correctional-grid {
        grid-template-columns: 1fr;
    }
}



/* System Implementation Services Section ------------------------ */
.pearl-implementation {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.pearl-implementation-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.pearl-implementation-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Description */
.pearl-implementation-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

/* Grid Layout */
.pearl-implementation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Implementation Steps */
.pearl-implementation-item {
    background: rgb(230, 240, 250); /* Light blueish background */
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

/* Icons */
.pearl-implementation-item i {
    font-size: 24px;
    color: #2ba2ec;
}

/* Hover Effect */
.pearl-implementation-item:hover {
    transform: scale(1.05);
}

/* Responsive: One Column on Small Screens */
@media (max-width: 768px) {
    .pearl-implementation-grid {
        grid-template-columns: 1fr;
    }
}



/* Project Management Section ------------------------*/
.pearl-project-management {
    background-color: rgb(230, 240, 250); /* Light blueish-whitesmoke background */
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.pearl-project-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.pearl-project-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ba2ec;
}

/* Description */
.pearl-project-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

/* Grid Layout */
.pearl-project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Project Management Services */
.pearl-project-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

/* Icons */
.pearl-project-item i {
    font-size: 24px;
    color: #2ba2ec;
}

/* Hover Effect */
.pearl-project-item:hover {
    transform: scale(1.05);
}

/* Responsive: One Column on Small Screens */
@media (max-width: 768px) {
    .pearl-project-grid {
        grid-template-columns: 1fr;
    }
}

