    .name-overlay{
        position: absolute; 
        top: 50%; 
        left: 0%; 
        /* transform: translate(-20%, -50%);  */
        /* text-align: center; width: 100%;  */
        color: white; 
        padding: 10px; 
        border-radius: 10px;
        margin-left: 5px; 
    }
    .underline {
        width: 50px; /* Adjust as needed */
        height: 2px;
        background-color: rgb(209, 206, 206);
        margin-bottom: 8px;
    }
    .description-container {
        display: flex;
        align-items: center;
        /* gap: 20px; */
        flex-wrap: wrap;
    }

    .description {
        margin: 0;
        flex: 5;
    }

    .vertical-line {
        width: 2px;
        height: 50px; /* Adjust as needed */
        background-color: rgb(209, 206, 206);
        margin: 0 10px;
    }

    .extra-text {
        margin: 0;
        flex: 3;
    }
    .ratings{
        position: absolute; 
        top: 2%; 
        right: 2%; 
        /* transform: translate(-5%, -50%);  */
        /* color: white;  */
        padding: 2px; 
        border-radius: 5px;
        /* margin-left: 15px;  */
    }
    .chat-button {
        position: absolute;
        top: 85%;
        left: 0;
        width: calc(100% - 20px); /* Adjust width to account for margin */
        margin: 0 10px; /* Adds margin on left and right */
        padding: 10px;
        background-color: #e65c00;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 12px;
        text-align: center;
        font-size: 16px;
        cursor: pointer;
    }
    .chat-button:hover {
        background-color: #cc5200;
    }

    @media (max-width: 768px) {
        .index-page {
            margin-top: 55%;
        }
    }
    @media (min-width: 768px) {
        .index-page {
            margin-top: 15%;
        }
    }