/* Reset some default spacing */
body, html {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Landing page styling */
.landing-page {
    min-height: 100vh;
    /*background: linear-gradient(135deg, #0d6efd, #6610f2);*/
    color: #ffffff;
    padding: 20px;
}

/* Logo styling */
.logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Title */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    color:#000;
}

/* Description */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }
}