.case-study-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.header1 {
    position: relative;
    background-color: #66666641;
}

.case-study-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    background-color: #ffffff2a;
    padding: 10px;
    border-radius: 10px;
}

.case-study-title {
    font-size: 28px;
    color: #e8da1a;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
}

.case-study-title:hover {
    color: #06bdf5;
}

.case-study-subheading {
    text-align: left;
    color: #1ad0e8;
    font-size: 24px;
    margin-bottom: 10px;
    padding-left: 30px;
}

.case-study-paragraph {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #faf7f7;
    padding-left: 40px;
    padding-right: 30px;
}

.case-study-section {
    margin-bottom: 30px;
}

.case-study-container a {
    text-decoration: none;
    color: inherit;
}

.case-study-subsubheading {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #74a3d1;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 30px;
    border-left: 4px solid #4caf50;/* Green accent */
}

/**************************/
.case-study-list {
    list-style-type: disc; /* Default bullet points */
    margin-left: 20px; /* Indent the list */
    padding-left: 40px;
    font-size: 16px;
    color: #f9fbfd;
    line-height: 1.6;
    text-align: left;
}

.case-study-list li {
    margin-bottom: 8px; /* Adds space between list items */
}

/****************************************/
.case-items-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to move to the next row */
    gap: 20px;
    justify-content: center; /* Centers items horizontally */
}

.case-item {
    width: 350px;
    height: 300px;
    display: flex;
    align-items: center; /* Centers the image inside the box */
    justify-content: center;
    overflow: hidden; /* Ensures images don’t overflow */
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space properly */
    border-radius: 10px;
}

/*******************************/
.case-study-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

.case-study-table th, 
.case-study-table td {
    border: 1px solid #ddd;
    padding: 12px;
}

.case-study-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.case-study-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.case-study-table tr {
    background-color: #f1f1f1;
}

.case-study-table td {
    vertical-align: middle;
}

