.page-container {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.page-content {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.page-content h1 {
    color: #dcd6d6;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #87d5d8;
}

.page-content h2 {
    color: #dcd6d6;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    color: #dcd6d6;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul {
    color: #dcd6d6;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    margin-left: 20px;
    padding-left: 20px;
}

.page-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.page-content ul li strong {
    color: #87d5d8;
}

.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background: #5d89d2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0 #5271ff;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px 0 #5271ff;
    background: #6895dc;
}

@media screen and (max-width: 480px) {
    .page-content {
        padding: 30px 20px;
    }
    
    .page-content h1 {
        font-size: 28px;
    }
    
    .page-content h2 {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .page-content p,
    .page-content ul {
        font-size: 14px;
    }
    
    .page-content ul {
        margin-left: 10px;
        padding-left: 15px;
    }
}