body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.top-navbar {
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: start; /* Centered for consistency across devices */
}

.navbar-content-wrapper {
    width: 100%;
    max-width: 960px;
    padding: 0 20px;
    display: flex;
    align-items: start;
}

.logo {
    height: 50px;
    display: block;
}

.page-content-container {
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    left: 0; /* Reset to 0 for consistency across viewports */
}

.title-section h1 {
    font-size: 45px;
    font-weight: bold;
    color: #212529;
    margin-bottom: 30px;
    line-height: 1.4;
}

.details-section {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 20px;
    flex-wrap: wrap;
}

.detail-item .label {
    font-weight: bold;
    width: 150px;
    color: #151617;
    padding-right: 10px;
}

.detail-item .value {
    color: #212529;
    flex: 1;
    min-width: 150px;
}

footer {
    width: 100%;
    max-width: 1000px;
    text-align: start;
    margin-top: 40px;
    padding-top: 20px;
    padding-right: 20px;
}

footer p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Medium screens */
@media (max-width: 992px) {
    .title-section h1 {
        font-size: 36px;
    }
    .detail-item {
        font-size: 18px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .title-section h1 {
        font-size: 28px;
        text-align: center;
    }
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .detail-item .label {
        width: auto;
        margin-bottom: 5px;
    }
    .navbar-content-wrapper, .page-content-container {
        padding: 0 15px;
    }
}

/* Small devices */
@media (max-width: 480px) {
    .title-section h1 {
        font-size: 22px;
    }
    .detail-item {
        font-size: 16px;
    }
    .logo {
        height: 40px;
    }
    footer {
        text-align: center;
        padding: 10px;
    }
}
