.wrap{

/*	background-color: lightblue;*/
}



/* Main container */
.dashpls-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 15px;
/*    border: 1px solid #ccc;*/
}

/* First row: Title & Logo */
.title-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
/*    border-bottom: 1px solid #ddd;*/
}

/* Title */
.title {
    font-size: 3em;
    font-weight: bold;
    width: 70%;
    line-height: 110%;
}

/* Logo */
.logo {
    width: 30%;
    text-align: right;
}

.logo img {
    width: 80px;
    height: auto;
}

/* Second row: features */
.details {
    width: 100%;
    margin-top: 10px;

}

.features p {
    font-size: 2em;
}

/* Styling the list */
.features ul {
	 font-size: 1.5em;
    list-style-type: disc;
    padding-left: 20px;
}

.features ul li {
    margin-bottom: 5px;
}

/* Responsive design */
@media (max-width: 600px) {
    .title-logo {
        flex-direction: column;
        text-align: center;
    }

    .title, .logo {
        width: 100%;
    }

    .logo {
        margin-top: 10px;
    }

    .logo img {
        width: 60px;
    }
}
