@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
    position: relative;
	overflow: hidden;
}

.content-container {
    max-width: 800px;
    padding-bottom: 70px;
}

.logo-main {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
	border-radius: 50%;
}

.main-heading {
    color: #333;
    margin-bottom: 10px;
}
.sub-text {
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

.footer-info {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 90%;
    color: #555;
    font-size: 0.9em;
    line-height: 1.6;
}
.footer-info a {
    color: #03c7c3;
    text-decoration: none;
	font-weight: 600;
}

.qspace-link {
    white-space: nowrap;
}

.logo-secondary {
    position: absolute;
    bottom: 60px;
    right: 20px;
    width: 80px;
    height: auto;
    z-index: 10;
}


@media (max-width: 768px) {
    .footer-info {
        position: static;
        transform: none;
        width: 100%;
        order: 3;
    }

    .logo-secondary {
        position: static; 
        order: 2;
    }

    body {
    	overflow: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        min-height: auto;
    }
}