
.overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    color: #000000;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}
.container {		
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 10px;  
    box-sizing: border-box;
}

.overview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.overview-container span {
    font-size: 26px;
    line-height: 31px;
    text-align: center;
}

.overview-container p {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    padding: 0 10px;
}

.button {
    background-color: #b5ac9f;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

.inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #C8C2B6;
    border-radius: 5px;
    justify-content: center;
}

.inner-box {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #b5ac9f;
    border-radius: 4px;
    flex-wrap: wrap;
    gap: 16px;
    padding: 30px;
    align-content: center;
    justify-content: center;
}
.thumbnail-img {
   
    border-radius: 8px;
    object-fit: contain; /* optional, helpful if image container has fixed size */   
	max-width: 100%;
}
.responsive-pdf-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Adjust this value for aspect ratio (4:3 here) */
    overflow: hidden;
}

.responsive-pdf {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
